2020-01-06 10:52:58 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "run";
|
2020-02-10 14:09:59 +00:00
|
|
|
version = "0.7.1";
|
2020-01-06 10:52:58 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TekWizely";
|
|
|
|
repo = "run";
|
|
|
|
rev = "v${version}";
|
2020-02-10 14:09:59 +00:00
|
|
|
sha256 = "0q9f8lzrzybdablqph5wihqhfbfzb3bbnnxvhy7g5ccg1kzy7mgp";
|
2020-01-06 10:52:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
modSha256 = "0s2lw9q5jskj41jqr8bv5w45pkrp2s0yfd2hgjgsd0q4ifm07k7s";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Easily manage and invoke small scripts and wrappers";
|
|
|
|
homepage = https://github.com/TekWizely/run;
|
|
|
|
license = licenses.mit;
|
2020-02-10 14:10:15 +00:00
|
|
|
maintainers = with maintainers; [ rawkode filalex77 ];
|
2020-01-06 10:52:58 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|