File tree 3 files changed +137
-28
lines changed
3 files changed +137
-28
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
inputs = {
3
3
nixpkgs . follows = "haskellNix/nixpkgs" ;
4
+ # nixpkgs-unstable.url = "github:NixOS/nixpkgs";
4
5
5
6
haskellNix . url = "github:input-output-hk/haskell.nix" ;
6
7
} ;
Original file line number Diff line number Diff line change 47
47
pkgs . runCommand "${ pkgs . hostPlatform . system } -all-nix-tools" {
48
48
requiredSystemFeatures = [ "recursive-nix" ] ;
49
49
nativeBuildInputs =
50
- [ pkgs . nix pkgs . gitMinimal ]
50
+ # [ inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nix pkgs.gitMinimal ]
51
+ [ ( pkgs . lib . trace pkgs . nix . version pkgs . nix ) pkgs . gitMinimal ]
51
52
++ stringifyInputs inputs
52
53
++ stringifyInputs inputs . haskellNix . inputs ;
53
54
} ''
54
55
export HOME=$(mktemp -d)
55
56
mkdir $out
56
- cp $(nix --offline --extra-experimental-features "flakes nix-command recursive-nix " \
57
+ cp $(nix --offline --extra-experimental-features "flakes nix-command" \
57
58
build --accept-flake-config --no-link --print-out-paths --no-allow-import-from-derivation \
58
59
--system ${ pkgs . hostPlatform . system } \
59
60
${ ../. } #${ fragment-drv } )/*.zip $out/
You can’t perform that action at this time.
0 commit comments