xe: init at 0.5

Simple xargs and apply replacement.
This commit is contained in:
Charles Strahan
2016-02-08 17:27:44 -05:00
parent 82e15d9914
commit 5691a2a498
2 changed files with 22 additions and 0 deletions
+20
View File
@@ -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 ];
};
}