nixpkgs/pkgs/development/tools/run/default.nix

25 lines
643 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-01-06 10:52:58 +00:00
buildGoModule rec {
pname = "run";
2020-05-20 00:37:36 +00:00
version = "0.7.2";
2020-01-06 10:52:58 +00:00
src = fetchFromGitHub {
owner = "TekWizely";
repo = "run";
rev = "v${version}";
2020-05-20 00:37:36 +00:00
sha256 = "17n11lqhywq4z62w2rakdq80v7mxf83rgln19vj4v4nxpwd2hjjw";
2020-01-06 10:52:58 +00:00
};
vendorSha256 = "1g5rmiiwqpm8gky9yr5f2a7zsjjmm9i12r7yxj9cz7y3rmw9sw8c";
2020-01-06 10:52:58 +00:00
doCheck = false;
meta = with lib; {
2020-01-06 10:52:58 +00:00
description = "Easily manage and invoke small scripts and wrappers";
homepage = "https://github.com/TekWizely/run";
2020-01-06 10:52:58 +00:00
license = licenses.mit;
maintainers = with maintainers; [ rawkode Br1ght0ne ];
2020-01-06 10:52:58 +00:00
platforms = platforms.unix;
};
}