File tree 3 files changed +20
-18
lines changed
3 files changed +20
-18
lines changed Original file line number Diff line number Diff line change
1
+ { pkgs } :
2
+
3
+ with pkgs ;
4
+
5
+ mkShell {
6
+ buildInputs = [
7
+ bash file pkgconfig autoconf automake libtool gmp valgrind clang gcc
8
+ ] ;
9
+ shellHook = ''
10
+ echo Running nix-shell with nixpkgs version: $(nix eval --raw nixpkgs.lib.version)
11
+ '' ;
12
+ }
Original file line number Diff line number Diff line change 1
- with ( import <nixpkgs> { } ) . pkgsi686Linux ;
2
- mkShell {
3
- buildInputs = [
4
- bash file pkgconfig autoconf automake libtool gmp valgrind clang gcc
5
- ] ;
6
- shellHook = ''
7
- echo Running nix-shell with nixpkgs version: $(nix eval --raw nixpkgs.lib.version)
8
- '' ;
9
- }
1
+ let
2
+ pkgs = ( import <nixpkgs> { } ) . pkgsi686Linux ;
3
+ in
4
+ import ./mkshell.nix { inherit pkgs ; }
Original file line number Diff line number Diff line change 1
- with ( import <nixpkgs> { } ) ;
2
- mkShell {
3
- buildInputs = [
4
- bash file pkgconfig autoconf automake libtool gmp valgrind clang gcc
5
- ] ;
6
- shellHook = ''
7
- echo Running nix-shell with nixpkgs version: $(nix eval --raw nixpkgs.lib.version)
8
- '' ;
9
- }
1
+ let
2
+ pkgs = ( import <nixpkgs> { } ) ;
3
+ in
4
+ import ./mkshell.nix { inherit pkgs ; }
You can’t perform that action at this time.
0 commit comments