2015-01-15 22:08:33 +00:00
|
|
|
{ stdenv, fetchgit, skalibs }:
|
2014-08-23 04:40:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-03-29 04:13:45 +00:00
|
|
|
version = "2.1.1.0";
|
2014-08-23 04:40:52 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "execline-${version}";
|
|
|
|
|
2015-01-15 22:08:33 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/execline";
|
|
|
|
rev = "refs/tags/v${version}";
|
2015-03-29 04:13:45 +00:00
|
|
|
sha256 = "0yhxyih8p6p9135nifi655qk4gnhdarjzfp1lb4pxx9ar9ay5q7w";
|
2014-08-23 04:40:52 +00:00
|
|
|
};
|
|
|
|
|
2014-12-23 16:06:27 +00:00
|
|
|
dontDisableStatic = true;
|
2014-08-23 04:40:52 +00:00
|
|
|
|
2015-01-15 22:08:33 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 16:06:27 +00: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-23 04:40:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://skarnet.org/software/execline/;
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "A small scripting language, to be used in place of a shell in non-interactive scripts";
|
2014-08-23 04:40:52 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|