From 2312ec22ad1a0a570773e4f0c7820cffc8e91edd Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Thu, 9 Jul 2020 12:41:53 +0200 Subject: [PATCH] shell.nix: Don't use let to show off a direct call in buildInputs. --- shell.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index d2dc1e4..0c43c99 100644 --- a/shell.nix +++ b/shell.nix @@ -1,8 +1,5 @@ with import {}; -let - ginsim = callPackage ./ginsim.nix {}; -in stdenv.mkDerivation { name = "GINsim-shell"; - buildInputs = [ ginsim ]; + buildInputs = [ (callPackage ./ginsim.nix {}) ]; }