Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 11 lines 318 B view raw
1{ callPackage, runtimeShell }: 2 3(callPackage ./build.nix { 4 version = "a4da4dfac44d1bbc6986c5c76fea45a60ebdd8e5"; 5 sha256 = "0gcjpw2q263hh8w2sjvq3f3k2d28qpkkv0jnl8hw1l7v604i8zxg"; 6}).overrideAttrs 7 (old: { 8 postPatch = old.postPatch or "" + '' 9 echo 'echo ${runtimeShell}' > scripts/find_shell 10 ''; 11 })