nixpkgs/pkgs/development/tools/misc/nix-build-uncached/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
643 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, makeWrapper }:
2020-05-11 03:35:07 +00:00
buildGoModule rec {
pname = "nix-build-uncached";
2022-02-12 18:24:49 +00:00
version = "1.1.1";
2020-05-11 03:35:07 +00:00
src = fetchFromGitHub {
owner = "Mic92";
repo = "nix-build-uncached";
rev = "v${version}";
2022-02-12 18:24:49 +00:00
sha256 = "sha256-9oc5zoOlwV02cY3ek+qYLgZaFQk4dPE9xgF8mAePGBI=";
2020-05-11 03:35:07 +00:00
};
vendorSha256 = null;
doCheck = false;
2020-05-11 03:35:07 +00:00
nativeBuildInputs = [ makeWrapper ];
meta = with lib; {
description = "A CI friendly wrapper around nix-build";
license = licenses.mit;
homepage = "https://github.com/Mic92/nix-build-uncached";
maintainers = [ maintainers.mic92 ];
platforms = platforms.unix;
};
}