Remove nix-build-uncached from niv management

The fixes we relied on are long since released and in nixpkgs proper.
This commit is contained in:
adisbladis 2022-04-15 22:11:43 +12:00
parent 3b5085d74a
commit 8e26776769
2 changed files with 1 additions and 17 deletions

View file

@ -1,16 +1,4 @@
{
"nix-build-uncached": {
"branch": "master",
"description": "A CI friendly wrapper around nix-build.",
"homepage": "",
"owner": "Mic92",
"repo": "nix-build-uncached",
"rev": "8cc18174e8d351954d6fe1a2115988f7c1acd10c",
"sha256": "1hlbkfcv21q08d7kk0w8nbj02i4mpzws508fy8hng434x7fba7vx",
"type": "tarball",
"url": "https://github.com/Mic92/nix-build-uncached/archive/8cc18174e8d351954d6fe1a2115988f7c1acd10c.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"nixpkgs": {
"branch": "nixos-unstable",
"description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to",

View file

@ -7,10 +7,6 @@ let
};
tools = pkgs.callPackage ./tools { };
nix-build-uncached = import sources.nix-build-uncached {
inherit pkgs;
};
in
pkgs.mkShell {
@ -27,6 +23,6 @@ pkgs.mkShell {
pkgs.jq
pkgs.nix-prefetch-git
pkgs.nix-eval-jobs
nix-build-uncached
pkgs.nix-build-uncached
];
}