shell.nix: Don't use let to show off a direct call in buildInputs.
This commit is contained in:
parent
e04cf16ff1
commit
2312ec22ad
1 changed files with 1 additions and 4 deletions
|
@ -1,8 +1,5 @@
|
||||||
with import <nixpkgs> {};
|
with import <nixpkgs> {};
|
||||||
let
|
|
||||||
ginsim = callPackage ./ginsim.nix {};
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "GINsim-shell";
|
name = "GINsim-shell";
|
||||||
buildInputs = [ ginsim ];
|
buildInputs = [ (callPackage ./ginsim.nix {}) ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue