38 lines
954 B
Nix
38 lines
954 B
Nix
{ stdenv, fetchgit, skalibs }:
|
|
|
|
let
|
|
|
|
version = "2.0.1.1";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "execline-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.skarnet.org/execline";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "06fn4fb8hp68pffgfc55l5raph3bk9v0gngbgxfyzkmwbb1gxhll";
|
|
};
|
|
|
|
dontDisableStatic = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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" ]);
|
|
|
|
meta = {
|
|
homepage = http://skarnet.org/software/execline/;
|
|
description = "A small scripting language, to be used in place of a shell in non-interactive scripts";
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.isc;
|
|
};
|
|
|
|
}
|