diff options
| author | Jörg Thalheim <joerg@thalheim.io> | 2024-08-17 22:23:58 +0200 |
|---|---|---|
| committer | Jörg Thalheim <joerg@thalheim.io> | 2024-08-23 11:14:43 +0200 |
| commit | 8d8193a99af60f8acbbd18d078df536471f6dc8b (patch) | |
| tree | dbf6a14847637e5fc977c78eaa48dfa135f43d6f | |
| parent | nix-doc: disable nix-doc (diff) | |
| download | nixpkgs-origin/update-nix-2.24.tar.gz | |
nix-plugins: 14.0.0 -> 15.0.0origin/update-nix-2.24
Fixes build with newer Nix
| -rw-r--r-- | pkgs/development/libraries/nix-plugins/default.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/libraries/nix-plugins/default.nix b/pkgs/development/libraries/nix-plugins/default.nix index 8714c6b4037a..0da1d1d917f2 100644 --- a/pkgs/development/libraries/nix-plugins/default.nix +++ b/pkgs/development/libraries/nix-plugins/default.nix @@ -2,18 +2,21 @@ stdenv.mkDerivation rec { pname = "nix-plugins"; - version = "14.0.0"; + version = "15.0.0"; src = fetchFromGitHub { owner = "shlevy"; repo = "nix-plugins"; rev = version; - hash = "sha256-RDKAuLwcZ3Pbn5JUDmGBcfD0xbM6Jud2ouXh/YKpfS8="; + hash = "sha256-C4VqKHi6nVAHuXVhqvTRRyn0Bb619ez4LzgUWPH1cbM="; }; nativeBuildInputs = [ cmake pkg-config ]; - buildInputs = [ nix boost ]; + buildInputs = [ + nix + boost + ]; meta = { description = "Collection of miscellaneous plugins for the nix expression language"; |
