commit
370a71c74f
|
@ -6160,6 +6160,12 @@
|
||||||
githubId = 20792;
|
githubId = 20792;
|
||||||
name = "Sebastian Galkin";
|
name = "Sebastian Galkin";
|
||||||
};
|
};
|
||||||
|
parasrah = {
|
||||||
|
email = "nixos@parasrah.com";
|
||||||
|
github = "parasrah";
|
||||||
|
githubId = 14935550;
|
||||||
|
name = "Brad Pfannmuller";
|
||||||
|
};
|
||||||
pashashocky = {
|
pashashocky = {
|
||||||
email = "pashashocky@gmail.com";
|
email = "pashashocky@gmail.com";
|
||||||
github = "pashashocky";
|
github = "pashashocky";
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "go-task";
|
||||||
|
version = "2.8.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = pname;
|
||||||
|
repo = "task";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1yf5s22q4hsxvgzrj4k6gbbq0whl5b9j12mbwimxaf53q535wy4q";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
|
subPackages = [ "cmd/task" ];
|
||||||
|
|
||||||
|
buildFlagsArray = [
|
||||||
|
"-ldflags=-s -w -X main.version=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/bin/task $out/bin/go-task
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://taskfile.dev/";
|
||||||
|
description = "A task runner / simpler Make alternative written in Go";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ parasrah ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -17724,6 +17724,8 @@ in
|
||||||
|
|
||||||
gotags = callPackage ../development/tools/gotags { };
|
gotags = callPackage ../development/tools/gotags { };
|
||||||
|
|
||||||
|
go-task = callPackage ../development/tools/go-task { };
|
||||||
|
|
||||||
golint = callPackage ../development/tools/golint { };
|
golint = callPackage ../development/tools/golint { };
|
||||||
|
|
||||||
golangci-lint = callPackage ../development/tools/golangci-lint { };
|
golangci-lint = callPackage ../development/tools/golangci-lint { };
|
||||||
|
|
Loading…
Reference in New Issue