another attempt to test bootstrapping

This commit is contained in:
2025-05-31 00:07:50 +01:00
parent 623cfffb6a
commit 73a283a545

View File

@@ -3,18 +3,11 @@
inputs = inputs =
{ {
nixpkgs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
url = "github:NixOS/nixpkgs/nixos-unstable";
};
flake-utils = { flake-util.url = "github:numtide/flake-utils";
url = "github:numtide/flake-utils";
};
p2prc-flake = {
url = "github:xecarlox94/p2p-rendering-computation?ref=nix";
};
p2prc-flake.url = "github:xecarlox94/p2p-rendering-computation?ref=nix";
}; };
outputs = { nixpkgs, p2prc-flake, flake-utils, ... }: outputs = { nixpkgs, p2prc-flake, flake-utils, ... }:
@@ -30,9 +23,7 @@
in { in {
packages = { packages.default = pkgs.haskellPackages.callPackage ./cabal.nix { };
default = pkgs.haskellPackages.callPackage ./cabal.nix { };
};
devShells.default = pkgs.haskellPackages.shellFor { devShells.default = pkgs.haskellPackages.shellFor {
@@ -54,5 +45,4 @@
}; };
} }
)); ));
} }