feat: rename to sims

This commit is contained in:
2026-05-03 20:03:46 +02:00
parent fb206667c4
commit c10709df26
41 changed files with 93 additions and 59 deletions

View File

@@ -19,7 +19,7 @@
}:
python3Packages.buildPythonApplication {
pname = "fabric-nix-example";
pname = "sims";
version = "0.0.1";
pyproject = true;
@@ -58,12 +58,12 @@ python3Packages.buildPythonApplication {
runHook preInstall
mkdir -p $out/${python3Packages.python.sitePackages}
cp -r bar $out/${python3Packages.python.sitePackages}/
cp -r sims $out/${python3Packages.python.sitePackages}/
# If you have any scripts to install
mkdir -p $out/bin
cp scripts/launcher.py $out/bin/bar
chmod +x $out/bin/bar
cp scripts/launcher.py $out/bin/sims
chmod +x $out/bin/sims
runHook postInstall
@@ -81,7 +81,7 @@ python3Packages.buildPythonApplication {
meta = {
changelog = "";
description = ''
Fabrix Bar Example
sims status bar (companion to fenster WM).
'';
homepage = "https://github.com/wholikeel/fabric";
license = lib.licenses.agpl3Only;