execline: update to 2.0.1.1
This commit is contained in:
parent
cbd1b0ec1f
commit
c2f822489c
@ -1,20 +1,23 @@
|
|||||||
{ stdenv, fetchurl, skalibs }:
|
{ stdenv, fetchgit, skalibs }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "2.0.0.0";
|
version = "2.0.1.1";
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "execline-${version}";
|
name = "execline-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "http://skarnet.org/software/execline/${name}.tar.gz";
|
url = "git://git.skarnet.org/execline";
|
||||||
sha256 = "1g5v6icxsf7p2ccj9iq85iikkm12xph65ri86ydakihv6al3jw71";
|
rev = "refs/tags/v${version}";
|
||||||
|
sha256 = "06fn4fb8hp68pffgfc55l5raph3bk9v0gngbgxfyzkmwbb1gxhll";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontDisableStatic = true;
|
dontDisableStatic = true;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--libdir=\${prefix}/lib"
|
"--libdir=\${prefix}/lib"
|
||||||
"--includedir=\${prefix}/include"
|
"--includedir=\${prefix}/include"
|
||||||
|
Loading…
Reference in New Issue
Block a user