Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 15 lines 264 B view raw
1{ stdenvNoCC, breezy }: 2{ url, rev, sha256 }: 3 4stdenvNoCC.mkDerivation { 5 name = "bzr-export"; 6 7 builder = ./builder.sh; 8 nativeBuildInputs = [ breezy ]; 9 10 outputHashAlgo = "sha256"; 11 outputHashMode = "recursive"; 12 outputHash = sha256; 13 14 inherit url rev; 15}