From 6987925decd2e950df4b39f3272b5e968cba3840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 9 Mar 2024 22:59:04 +0100 Subject: [PATCH] Fix flake --- flake.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index b950edf..e798358 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "A small listener for notifications"; + description = "Jank workaround for mumble PTT"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; @@ -17,7 +17,7 @@ in { overlays.default = final: prev: { - notlistener = self.packages.${prev.system}.default; + ghettoptt = self.packages.${prev.system}.default; }; packages = forAllSystems ({ pkgs }: { @@ -25,8 +25,6 @@ name = "ghettoptt"; src = ./.; vendorHash = "sha256-S/t8EkMRjceGhNcNqGhmnMviQrhqt7n9FiCmpxbKUoI="; - buildInputs = [ pkgs.libnotify ]; - nativeBuildInputs = [ pkgs.pkg-config ]; }; }); devShells = forAllSystems ({ pkgs }: {