Commit 7d100074 authored by K900's avatar K900
Browse files

Revert "nix-plugins: 14.0.0 -> 15.0.0"

This reverts commit 02911673.

To match Nix version revert.

See upstream issue: https://github.com/NixOS/nix/issues/11547
parent b3b9bdd9
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -2,21 +2,18 @@

stdenv.mkDerivation rec {
  pname = "nix-plugins";
  version = "15.0.0";
  version = "14.0.0";

  src = fetchFromGitHub {
    owner = "shlevy";
    repo = "nix-plugins";
    rev = version;
    hash = "sha256-C4VqKHi6nVAHuXVhqvTRRyn0Bb619ez4LzgUWPH1cbM=";
    hash = "sha256-RDKAuLwcZ3Pbn5JUDmGBcfD0xbM6Jud2ouXh/YKpfS8=";
  };

  nativeBuildInputs = [ cmake pkg-config ];

  buildInputs = [
    nix
    boost
  ];
  buildInputs = [ nix boost ];

  meta = {
    description = "Collection of miscellaneous plugins for the nix expression language";