aboutsummaryrefslogtreecommitdiff
path: root/tools/waybar-systemd-units/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tools/waybar-systemd-units/default.nix')
-rw-r--r--tools/waybar-systemd-units/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/waybar-systemd-units/default.nix b/tools/waybar-systemd-units/default.nix
deleted file mode 100644
index 086fba1..0000000
--- a/tools/waybar-systemd-units/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib, stdenvNoCC, pkgs }:
-
-stdenvNoCC.mkDerivation rec {
- pname = "waybar-systemd-units";
- src = ./waybar-systemd.py;
- version = "0.1.0";
-
- buildInputs = [ (pkgs.python310.withPackages (ps: with ps; [ click ])) ];
-
- propagatedBuildInputs =
- [ (pkgs.python310.withPackages (ps: with ps; [ click ])) ];
-
- dontUnpack = true;
- dontBuild = true;
-
- installPhase = ''
- mkdir -p $out/bin
- cp $src $out/bin/${pname}
- '';
-
- meta = with lib; {
- description = "Get a list of systemd units that have failed.";
- license = with licenses; [ mit ];
- platforms = platforms.unix;
- maintainers = with maintainers; [ fcuny ];
- };
-}