diff options
| author | user@node5.net <user@node5.net> | 2026-06-28 16:30:25 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-06-28 18:01:37 +0200 |
| commit | 8e42b509a485307b18686f14ca693eedceb51f6d (patch) | |
| tree | be8d40c27638e5a3209acf1ba33a9c78341512f7 /flake.nix | |
| parent | fe67bb8dc77935071c4533d5328093630eb4491f (diff) | |
flake: rename binaries, code comments
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -31,7 +31,7 @@ description = "Bornhack schedule web displayer with a teletext theme"; homepage = "https://text-tv.bornhack.node5.net/"; changelog = "https://git.node5.net/misc/text-tv.bornhack.node5.net/log/"; - mainProgram = "node5_text-tv_bornhack"; + mainProgram = "node5-text-tv"; }; propagatedBuildInputs = (attrs.propagatedBuildInputs or []) ++ [ pkgs.git ]; # Make git binary available postInstall = '' @@ -39,22 +39,22 @@ echo $out cp -r $src/src/static/ $out/${python.sitePackages} cp -r $src/src/templates/ $out/${python.sitePackages} - cp $src/fetch_program.sh $out/bin/ + cp $src/fetch_program.sh $out/bin/node5-text-tv-fetch ''; }); in { packages.x86_64-linux.default = pkg; apps.x86_64-linux = { - node5_text-tv_bornhack = { + node5-text-tv = { type = "app"; - program = "${pkg}/bin/node5_text-tv_bornhack"; + program = "${pkg}/bin/node5-text-tv"; }; - node5_text-tv_bornhack_pixel-flut-program = { + node5-text-tv-program = { type = "app"; - program = "${pkg}/bin/node5_text-tv_bornhack_pixel-flut-program"; + program = "${pkg}/bin/node5-text-tv-program"; }; - node5_text-tv_bornhack_fetch_program = { + node5-text-tv-fetch = { type = "app"; program = "${pkg}/bin/fetch_program.sh"; }; |
