about summary refs log tree commit diff
path: root/pkgs/applications/misc/with-shell
diff options
context:
space:
mode:
authorAnthony Cowley <acowley@gmail.com>2016-08-20 15:12:10 -0400
committerAnthony Cowley <acowley@gmail.com>2016-08-20 17:09:56 -0400
commit30f8a050ae7bc842722581e038174a01c43113c4 (patch)
tree8c72ce331513c401d74306d2f6df636d1360206b /pkgs/applications/misc/with-shell
parentacaa6a4c2b0ef4d73f5e4b38302f310072e4c9b1 (diff)
downloadnixlib-30f8a050ae7bc842722581e038174a01c43113c4.tar
nixlib-30f8a050ae7bc842722581e038174a01c43113c4.tar.gz
nixlib-30f8a050ae7bc842722581e038174a01c43113c4.tar.bz2
nixlib-30f8a050ae7bc842722581e038174a01c43113c4.tar.lz
nixlib-30f8a050ae7bc842722581e038174a01c43113c4.tar.xz
nixlib-30f8a050ae7bc842722581e038174a01c43113c4.tar.zst
nixlib-30f8a050ae7bc842722581e038174a01c43113c4.zip
with: init at 2016-08-20
Adds the "with" shell helper application.
Diffstat (limited to 'pkgs/applications/misc/with-shell')
-rw-r--r--pkgs/applications/misc/with-shell/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/misc/with-shell/default.nix b/pkgs/applications/misc/with-shell/default.nix
new file mode 100644
index 000000000000..d3b5541ac4db
--- /dev/null
+++ b/pkgs/applications/misc/with-shell/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchFromGitHub }:
+stdenv.mkDerivation {
+  name = "with-2016-08-20";
+  src = fetchFromGitHub {
+    owner = "mchav";
+    repo = "With";
+    rev = "cc2828bddd92297147d4365765f4ef36385f050a";
+    sha256 = "10m2xv6icrdp6lfprw3a9hsrzb3bip19ipkbmscap0niddqgcl9b";
+  };
+  installPhase = ''
+    mkdir -p $out/bin
+    cp with $out/bin/with
+  '';
+  meta = {
+    homepage = "https://github.com/mchav/With";
+    description = "Command prefixing for continuous workflow using a single tool";
+    license = stdenv.lib.licenses.asl20;
+    platforms = stdenv.lib.platforms.unix;
+  };
+}