2016-08-25 15:27:39 +00:00
|
|
|
{stdenv, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, ed, which
|
|
|
|
, tcllib, withJson ? true}:
|
2010-05-12 13:17:19 +00:00
|
|
|
|
2015-03-26 07:12:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-28 13:59:40 +00:00
|
|
|
name = "fossil-${version}";
|
2018-05-07 11:20:37 +00:00
|
|
|
version = "2.6";
|
2010-05-12 13:17:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-28 13:59:40 +00:00
|
|
|
urls =
|
2015-03-26 07:12:25 +00:00
|
|
|
[
|
2017-09-28 13:59:40 +00:00
|
|
|
"https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
|
2015-08-05 12:09:33 +00:00
|
|
|
];
|
2015-03-26 07:12:25 +00:00
|
|
|
name = "${name}.tar.gz";
|
2018-05-07 11:20:37 +00:00
|
|
|
sha256 = "1nbfzxwnq66f8162nmddd22xn3nyazqr16kka2c1gghqb5ar99vn";
|
2010-05-12 13:17:19 +00:00
|
|
|
};
|
|
|
|
|
2016-08-25 15:27:39 +00:00
|
|
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
2016-04-25 16:07:32 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ tcl ];
|
2010-11-19 23:10:41 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkTarget = "test";
|
2016-08-25 15:27:39 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
|
|
|
'';
|
2013-10-21 18:16:27 +00:00
|
|
|
configureFlags = if withJson then "--json" else "";
|
2010-05-12 13:17:19 +00:00
|
|
|
|
2012-11-08 19:05:49 +00:00
|
|
|
preBuild=''
|
|
|
|
export USER=nonexistent-but-specified-user
|
|
|
|
'';
|
|
|
|
|
2010-05-12 13:17:19 +00:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
2010-05-12 13:17:19 +00:00
|
|
|
INSTALLDIR=$out/bin make install
|
|
|
|
'';
|
|
|
|
|
2010-08-11 20:08:29 +00:00
|
|
|
crossAttrs = {
|
2010-11-22 11:39:42 +00:00
|
|
|
doCheck = false;
|
2017-06-26 22:45:40 +00:00
|
|
|
makeFlags = [ "TCC=$CC" ];
|
2010-08-11 20:08:29 +00:00
|
|
|
};
|
|
|
|
|
2010-05-12 13:17:19 +00:00
|
|
|
meta = {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Simple, high-reliability, distributed software configuration management";
|
2010-05-12 13:17:19 +00:00
|
|
|
longDescription = ''
|
|
|
|
Fossil is a software configuration management system. Fossil is
|
|
|
|
software that is designed to control and track the development of a
|
|
|
|
software project and to record the history of the project. There are
|
|
|
|
many such systems in use today. Fossil strives to distinguish itself
|
|
|
|
from the others by being extremely simple to setup and operate.
|
|
|
|
'';
|
|
|
|
homepage = http://www.fossil-scm.org/;
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2010-11-19 23:10:45 +00:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2010-05-12 13:17:19 +00:00
|
|
|
maintainers = [ #Add your name here!
|
|
|
|
stdenv.lib.maintainers.z77z
|
2010-11-19 23:10:45 +00:00
|
|
|
stdenv.lib.maintainers.viric
|
2010-05-12 13:17:19 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|