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