forked from mirrors/nixpkgs
xe: init at 0.5
Simple xargs and apply replacement.
This commit is contained in:
parent
82e15d9914
commit
5691a2a498
20
pkgs/tools/system/xe/default.nix
Normal file
20
pkgs/tools/system/xe/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3512,6 +3512,8 @@ let
|
||||||
|
|
||||||
xl2tpd = callPackage ../tools/networking/xl2tpd { };
|
xl2tpd = callPackage ../tools/networking/xl2tpd { };
|
||||||
|
|
||||||
|
xe = callPackage ../tools/system/xe { };
|
||||||
|
|
||||||
testdisk = callPackage ../tools/misc/testdisk { };
|
testdisk = callPackage ../tools/misc/testdisk { };
|
||||||
|
|
||||||
html2text = callPackage ../tools/text/html2text { };
|
html2text = callPackage ../tools/text/html2text { };
|
||||||
|
|
Loading…
Reference in a new issue