Merge pull request #77081 from rawkode/feature/add-run

run: init at 0.7.0
This commit is contained in:
lewo 2020-01-11 09:19:09 +01:00 committed by GitHub
commit 99470a3cb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "run";
version = "0.7.0";
src = fetchFromGitHub {
owner = "TekWizely";
repo = "run";
rev = "v${version}";
sha256 = "0365nvsqrlagrp08sifbdk3rgy7r4hmp3sx5zhizamadfcj2fsv6";
};
modSha256 = "0s2lw9q5jskj41jqr8bv5w45pkrp2s0yfd2hgjgsd0q4ifm07k7s";
meta = with stdenv.lib; {
description = "Easily manage and invoke small scripts and wrappers";
homepage = https://github.com/TekWizely/run;
license = licenses.mit;
maintainers = with maintainers; [ rawkode ];
platforms = platforms.unix;
};
}

@ -274,6 +274,8 @@ in
pet = callPackage ../development/tools/pet { };
run = callPackage ../development/tools/run { };
mod = callPackage ../development/tools/mod { };
broadlink-cli = callPackage ../tools/misc/broadlink-cli {};