blob: abbeb29234da1ac8c3f496fb530029e1a5ecfed2 (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ lib, stdenv, fetchFromGitHub, asciidoctor, gawk, gnused, runtimeShell }:
stdenv.mkDerivation rec {
pname = "esh";
version = "0.1.1";
src = fetchFromGitHub {
owner = "jirutka";
repo = "esh";
rev = "v${version}";
sha256 = "1ddaji5nplf1dyvgkrhqjy8m5djaycqcfhjv30yprj1avjymlj6w";
};
nativeBuildInputs = [ asciidoctor ];
buildInputs = [ gawk gnused ];
makeFlags = [ "prefix=$(out)" "DESTDIR=" ];
postPatch = ''
patchShebangs .
substituteInPlace esh \
--replace '"/bin/sh"' '"${runtimeShell}"' \
--replace '"awk"' '"${gawk}/bin/awk"' \
--replace 'sed' '${gnused}/bin/sed'
substituteInPlace tests/test-dump.exp \
--replace '#!/bin/sh' '#!${runtimeShell}'
'';
doCheck = true;
checkTarget = "test";
meta = with lib; {
description = "Simple templating engine based on shell";
mainProgram = "esh";
homepage = "https://github.com/jirutka/esh";
license = licenses.mit;
maintainers = with maintainers; [ mnacamura ];
platforms = platforms.unix;
};
}
|