at 23.11-beta 24 lines 612 B view raw
1{ lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }: 2 3stdenv.mkDerivation rec { 4 pname = "nix-plugins"; 5 version = "12.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "shlevy"; 9 repo = "nix-plugins"; 10 rev = version; 11 hash = "sha256-VJqLfOT7y32Jupl57YXxqeDPy0tOWi46tRLN1QUDIow="; 12 }; 13 14 nativeBuildInputs = [ cmake pkg-config ]; 15 16 buildInputs = [ nix boost ]; 17 18 meta = { 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; 23 }; 24}