31 lines
812 B
Nix
31 lines
812 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "mage";
|
|
version = "1.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magefile";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0lazf4r5ps1s04pvz608qaxbrbc6dv0j99n39iv42zwxxh0mbd0p";
|
|
};
|
|
|
|
modSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
|
|
|
|
buildFlagsArray = [
|
|
"-ldflags="
|
|
"-X github.com/magefile/mage/mage.commitHash=v${version}"
|
|
"-X github.com/magefile/mage/mage.gitTag=v${version}"
|
|
"-X github.com/magefile/mage/mage.timestamp=1970-01-01T00:00:00Z"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A Make/Rake-like Build Tool Using Go";
|
|
homepage = "https://magefile.org/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ swdunlop ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|