mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
xe: init at 0.5
Simple xargs and apply replacement.
This commit is contained in:
parent
82e15d9914
commit
5691a2a498
2 changed files with 22 additions and 0 deletions
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 { };
|
||||
|
||||
xe = callPackage ../tools/system/xe { };
|
||||
|
||||
testdisk = callPackage ../tools/misc/testdisk { };
|
||||
|
||||
html2text = callPackage ../tools/text/html2text { };
|
||||
|
|
Loading…
Reference in a new issue