diff options
Diffstat (limited to 'users/wpcarro/tools/systemd-shell/default.nix')
-rw-r--r-- | users/wpcarro/tools/systemd-shell/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/users/wpcarro/tools/systemd-shell/default.nix b/users/wpcarro/tools/systemd-shell/default.nix new file mode 100644 index 000000000000..eace76b7087b --- /dev/null +++ b/users/wpcarro/tools/systemd-shell/default.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +pkgs.python310Packages.buildPythonApplication { + pname = "systemd-shell"; + version = "0.0.1"; + src = ./.; + doCheck = false; +} |