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