3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/nix-plugins/default.nix

25 lines
611 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }:
2021-07-17 19:37:27 +01:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "nix-plugins";
version = "8.0.0";
2014-06-27 23:25:34 +01:00
2017-04-04 16:29:40 +01:00
src = fetchFromGitHub {
owner = "shlevy";
repo = "nix-plugins";
rev = version;
hash = "sha256-Zz8cPHK4w0qimYu6III6XfiKVQIzEMMV9P6ER5fveZY=";
2014-06-27 23:25:34 +01:00
};
nativeBuildInputs = [ cmake pkg-config ];
2018-04-11 20:22:05 +01:00
buildInputs = [ nix boost ];
2014-06-27 23:25:34 +01:00
meta = {
description = "Collection of miscellaneous plugins for the nix expression language";
homepage = "https://github.com/shlevy/nix-plugins";
license = lib.licenses.mit;
platforms = lib.platforms.all;
2014-06-27 23:25:34 +01:00
};
}