1 { lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 hash = "sha256-VJqLfOT7y32Jupl57YXxqeDPy0tOWi46tRLN1QUDIow=";
14 nativeBuildInputs = [ cmake pkg-config ];
16 buildInputs = [ nix boost ];
19 description = "Collection of miscellaneous plugins for the nix expression language";
20 homepage = "https://github.com/shlevy/nix-plugins";
21 license = lib.licenses.mit;
22 platforms = lib.platforms.all;