2015-01-15 14:08:33 -08:00
|
|
|
{ stdenv, fetchgit, skalibs }:
|
2014-08-22 21:40:52 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-07-28 04:13:42 -07:00
|
|
|
version = "2.1.4.0";
|
2014-08-22 21:40:52 -07:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "execline-${version}";
|
|
|
|
|
2015-01-15 14:08:33 -08:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/execline";
|
|
|
|
rev = "refs/tags/v${version}";
|
2015-07-28 04:13:42 -07:00
|
|
|
sha256 = "1ih0mmkra3aa697nz7haaifq2hfy3wjj39npxzg9zr37m7yw67yz";
|
2014-08-22 21:40:52 -07:00
|
|
|
};
|
|
|
|
|
2014-12-23 08:06:27 -08:00
|
|
|
dontDisableStatic = true;
|
2014-08-22 21:40:52 -07:00
|
|
|
|
2015-01-15 14:08:33 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 08:06:27 -08:00
|
|
|
configureFlags = [
|
|
|
|
"--libdir=\${prefix}/lib"
|
|
|
|
"--includedir=\${prefix}/include"
|
|
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs}/include"
|
|
|
|
"--with-lib=${skalibs}/lib"
|
|
|
|
"--with-dynlib=${skalibs}/lib"
|
|
|
|
] ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]);
|
2014-08-22 21:40:52 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://skarnet.org/software/execline/;
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "A small scripting language, to be used in place of a shell in non-interactive scripts";
|
2014-08-22 21:40:52 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-06-01 13:16:51 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
2014-08-22 21:40:52 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|