summary refs log tree commit diff
path: root/pkgs/tools/system/xe
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2016-02-08 16:37:35 -0500
committerCharles Strahan <charles.c.strahan@gmail.com>2016-02-08 17:27:44 -0500
commit5691a2a498f25a967af1d89bdb845eea665b672f (patch)
treea6ad66455e425560a3d29625be8cf275a8dc60e0 /pkgs/tools/system/xe
parent82e15d9914e25c216ca162b777ac420fa9fbf356 (diff)
downloadnixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.tar
nixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.tar.gz
nixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.tar.bz2
nixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.tar.lz
nixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.tar.xz
nixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.tar.zst
nixpkgs-5691a2a498f25a967af1d89bdb845eea665b672f.zip
xe: init at 0.5
Simple xargs and apply replacement.
Diffstat (limited to 'pkgs/tools/system/xe')
-rw-r--r--pkgs/tools/system/xe/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/system/xe/default.nix b/pkgs/tools/system/xe/default.nix
new file mode 100644
index 00000000000..303374942c0
--- /dev/null
+++ b/pkgs/tools/system/xe/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, lib, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "xe-${version}";
+  version = "0.5";
+  src = fetchFromGitHub {
+    owner = "chneukirchen";
+    repo = "xe";
+    rev = "v${version}";
+    sha256 = "0rv9npgjb695slql39asyp6znv9r3a6jbcsrsa1cmhk82iy4bljc";
+  };
+  makeFlags = "PREFIX=$(out)";
+  meta = with lib; {
+    description = "Simple xargs and apply replacement";
+    homepage = "https://github.com/chneukirchen/xe";
+    license = licenses.publicDomain;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ cstrahan ];
+  };
+}