summary refs log tree commit diff
path: root/pkgs/tools/system/xe/default.nix
blob: 934aa6fc279320137ac58b54cd88fa7387610ac7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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.linux;
    maintainers = with maintainers; [ cstrahan ndowens ];
  };
}