about summary refs log tree commit diff
path: root/pkgs/development/tools/run/default.nix
diff options
context:
space:
mode:
authorDavid McKay <rawkode@pm.me>2020-01-06 10:52:58 +0000
committerDavid McKay <rawkode@pm.me>2020-01-06 14:37:13 +0000
commit22622e99a3692c1d286cbe9a59df28247e38a76b (patch)
tree61d44c16386935969e47562421c7919880ea397a /pkgs/development/tools/run/default.nix
parent0752cf064167c701092316355f08e9351cdcbd31 (diff)
downloadnixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.tar
nixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.tar.gz
nixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.tar.bz2
nixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.tar.lz
nixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.tar.xz
nixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.tar.zst
nixlib-22622e99a3692c1d286cbe9a59df28247e38a76b.zip
run: init at 0.7.0
Diffstat (limited to 'pkgs/development/tools/run/default.nix')
-rw-r--r--pkgs/development/tools/run/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/run/default.nix b/pkgs/development/tools/run/default.nix
new file mode 100644
index 000000000000..18c08a0f3f57
--- /dev/null
+++ b/pkgs/development/tools/run/default.nix
@@ -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;
+  };
+}