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