nixpkgs/pkgs/tools/system/xe/default.nix

24 lines
572 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "xe-${version}";
version = "0.11";
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "xe";
rev = "v${version}";
sha256 = "04jr8f6jcijr0bsmn8ajm0aj35qh9my3xjsaq64h8lwg5bpyn29x";
};
2017-03-01 01:30:26 +00:00
makeFlags = "PREFIX=$(out)";
meta = with lib; {
description = "Simple xargs and apply replacement";
homepage = https://github.com/chneukirchen/xe;
license = licenses.publicDomain;
platforms = platforms.all;
2017-03-01 01:30:26 +00:00
maintainers = with maintainers; [ cstrahan ndowens ];
};
}