fossil: update to 1.35
This commit is contained in:
parent
4dc1823e73
commit
3aa8f23aec
1 changed files with 10 additions and 5 deletions
|
@ -1,24 +1,29 @@
|
||||||
{stdenv, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, withJson ? true}:
|
{stdenv, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, ed, which
|
||||||
|
, tcllib, withJson ? true}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "fossil-1.33";
|
name = "fossil-1.35";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls =
|
urls =
|
||||||
[
|
[
|
||||||
https://www.fossil-scm.org/download/fossil-src-1.33.tar.gz
|
https://www.fossil-scm.org/download/fossil-src-1.35.tar.gz
|
||||||
];
|
];
|
||||||
name = "${name}.tar.gz";
|
name = "${name}.tar.gz";
|
||||||
sha256 = "0gkzd9nj3xyznh9x8whv0phdnj11l5c8164rc3l0jvs5i61c95b2";
|
sha256 = "07ds6rhq69bhydpm9a01mgdhxf88p9b6y5hdnhn8gjc7ba92zyf1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib openssl readline sqlite ]
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
nativeBuildInputs = [ tcl ];
|
nativeBuildInputs = [ tcl ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
||||||
|
'';
|
||||||
configureFlags = if withJson then "--json" else "";
|
configureFlags = if withJson then "--json" else "";
|
||||||
|
|
||||||
preBuild=''
|
preBuild=''
|
||||||
|
|
Loading…
Reference in a new issue