Fix flake

This commit is contained in:
Torjus Håkestad 2024-03-09 22:59:04 +01:00
parent a1fa070078
commit 6987925dec

View File

@ -1,5 +1,5 @@
{ {
description = "A small listener for notifications"; description = "Jank workaround for mumble PTT";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
@ -17,7 +17,7 @@
in in
{ {
overlays.default = final: prev: { overlays.default = final: prev: {
notlistener = self.packages.${prev.system}.default; ghettoptt = self.packages.${prev.system}.default;
}; };
packages = forAllSystems ({ pkgs }: { packages = forAllSystems ({ pkgs }: {
@ -25,8 +25,6 @@
name = "ghettoptt"; name = "ghettoptt";
src = ./.; src = ./.;
vendorHash = "sha256-S/t8EkMRjceGhNcNqGhmnMviQrhqt7n9FiCmpxbKUoI="; vendorHash = "sha256-S/t8EkMRjceGhNcNqGhmnMviQrhqt7n9FiCmpxbKUoI=";
buildInputs = [ pkgs.libnotify ];
nativeBuildInputs = [ pkgs.pkg-config ];
}; };
}); });
devShells = forAllSystems ({ pkgs }: { devShells = forAllSystems ({ pkgs }: {