lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 21 lines 430 B view raw
1{ mkDerivation, lib, cmake, pkg-config }: 2 3mkDerivation { 4 name = "extra-cmake-modules"; 5 6 patches = [ 7 ./nix-lib-path.patch 8 ]; 9 10 outputs = [ "out" ]; # this package has no runtime components 11 12 propagatedBuildInputs = [ cmake pkg-config ]; 13 14 setupHook = ./setup-hook.sh; 15 16 meta = with lib; { 17 platforms = platforms.linux ++ platforms.darwin; 18 homepage = "http://www.kde.org"; 19 license = licenses.bsd2; 20 }; 21}