Merge pull request #121524 from Mdsp9070/earthly
This commit is contained in:
commit
f8a1317749
@ -6380,6 +6380,12 @@
|
|||||||
fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94";
|
fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
mdsp = {
|
||||||
|
github = "Mdsp9070";
|
||||||
|
githubId = 44469426;
|
||||||
|
name = "Matheus de Souza Pessanha";
|
||||||
|
email = "matheus_pessanha2001@outlook.com";
|
||||||
|
};
|
||||||
meatcar = {
|
meatcar = {
|
||||||
email = "nixpkgs@denys.me";
|
email = "nixpkgs@denys.me";
|
||||||
github = "meatcar";
|
github = "meatcar";
|
||||||
|
28
pkgs/development/tools/earthly/default.nix
Normal file
28
pkgs/development/tools/earthly/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "earthly";
|
||||||
|
version = "0.5.11";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "earthly";
|
||||||
|
repo = "earthly";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1d9p2f79f2k7nnka9qja3dlqvvl240l09frkb17ff2f5kyi1qabv";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "1wfm55idlxf6cbm6b5z3fip0j94nwr7m0zxx6a2nsr03d4x0ad0k";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/bin/debugger $out/bin/earthly-debugger
|
||||||
|
mv $out/bin/shellrepeater $out/bin/earthly-shellrepeater
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Build automation for the container era";
|
||||||
|
homepage = "https://earthly.dev/";
|
||||||
|
changelog = "https://github.com/earthly/earthly/releases/tag/v${version}";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ mdsp ];
|
||||||
|
};
|
||||||
|
}
|
@ -2419,6 +2419,8 @@ in
|
|||||||
|
|
||||||
dyndnsc = callPackage ../applications/networking/dyndns/dyndnsc { };
|
dyndnsc = callPackage ../applications/networking/dyndns/dyndnsc { };
|
||||||
|
|
||||||
|
earthly = callPackage ../development/tools/earthly { };
|
||||||
|
|
||||||
earlybird = callPackage ../tools/security/earlybird { };
|
earlybird = callPackage ../tools/security/earlybird { };
|
||||||
|
|
||||||
earlyoom = callPackage ../os-specific/linux/earlyoom { };
|
earlyoom = callPackage ../os-specific/linux/earlyoom { };
|
||||||
|
Loading…
Reference in New Issue
Block a user