1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

nix-plugins: 14.0.0 -> 15.0.0

Fixes build with newer Nix
This commit is contained in:
Jörg Thalheim 2024-08-17 22:23:58 +02:00
parent 12829a17fd
commit 0291167323

View file

@ -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";