nixpkgs/pkgs/tools/misc/execline/default.nix

39 lines
1,015 B
Nix
Raw Normal View History

2015-01-15 22:08:33 +00:00
{ stdenv, fetchgit, skalibs }:
let
version = "2.1.2.0";
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}";
sha256 = "0p9wp1rq8010k5yxlvamajhi6m24r9v7ikb7scvznf6zb2b0d9hf";
};
dontDisableStatic = true;
2015-01-15 22:08:33 +00:00
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/;
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";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
};
}