nixpkgs/pkgs/tools/text/esh/default.nix

41 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, asciidoctor, gawk, gnused, runtimeShell }:
2018-06-19 10:34:18 +00:00
stdenv.mkDerivation rec {
pname = "esh";
2018-06-19 10:34:18 +00:00
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}"' \
2018-06-19 10:34:18 +00:00
--replace '"awk"' '"${gawk}/bin/awk"' \
--replace 'sed' '${gnused}/bin/sed'
substituteInPlace tests/test-dump.exp \
--replace '#!/bin/sh' '#!${runtimeShell}'
2018-06-19 10:34:18 +00:00
'';
doCheck = true;
checkTarget = "test";
meta = with lib; {
2018-06-19 10:34:18 +00:00
description = "Simple templating engine based on shell";
homepage = "https://github.com/jirutka/esh";
2018-06-19 10:34:18 +00:00
license = licenses.mit;
maintainers = with maintainers; [ mnacamura ];
platforms = platforms.unix;
};
}