Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 20 lines 358 B view raw
1{ 2 lib, 3 stdenv, 4 linux, 5}: 6 7stdenv.mkDerivation { 8 pname = "mm-tools"; 9 inherit (linux) version src; 10 11 makeFlags = [ "sbindir=${placeholder "out"}/bin" ]; 12 13 preConfigure = "cd tools/mm"; 14 15 meta = with lib; { 16 inherit (linux.meta) license platforms; 17 description = "Set of virtual memory tools"; 18 maintainers = [ maintainers.evils ]; 19 }; 20}