mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
7bae5c6392
xe is such a trivial package, it should build on every platform that supports a CC compiler.
24 lines
572 B
Nix
24 lines
572 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xe-${version}";
|
|
version = "0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chneukirchen";
|
|
repo = "xe";
|
|
rev = "v${version}";
|
|
sha256 = "04jr8f6jcijr0bsmn8ajm0aj35qh9my3xjsaq64h8lwg5bpyn29x";
|
|
};
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
meta = with lib; {
|
|
description = "Simple xargs and apply replacement";
|
|
homepage = https://github.com/chneukirchen/xe;
|
|
license = licenses.publicDomain;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ cstrahan ndowens ];
|
|
};
|
|
}
|