2018-05-10 07:20:53 +01:00
|
|
|
{ stdenv
|
|
|
|
, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, ed, which
|
|
|
|
, tcllib, withJson ? true
|
|
|
|
}:
|
2010-05-12 14:17:19 +01:00
|
|
|
|
2015-03-26 07:12:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fossil";
|
2019-07-15 14:31:37 +01:00
|
|
|
version = "2.9";
|
2010-05-12 14:17:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-28 14:59:40 +01:00
|
|
|
urls =
|
2015-03-26 07:12:25 +00:00
|
|
|
[
|
2017-09-28 14:59:40 +01:00
|
|
|
"https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
|
2015-08-05 13:09:33 +01:00
|
|
|
];
|
2019-08-15 13:41:18 +01:00
|
|
|
name = "${pname}-${version}.tar.gz";
|
2019-07-15 14:31:37 +01:00
|
|
|
sha256 = "0kwb7pkp7y2my916rhyl6kmcf0fk8gkzaxzy13hfgqs35nlsvchw";
|
2010-05-12 14:17:19 +01:00
|
|
|
};
|
|
|
|
|
2016-08-25 16:27:39 +01:00
|
|
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
2016-04-25 17:07:32 +01: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
|
|
|
|
2018-05-10 07:20:53 +01:00
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
2018-08-08 19:22:45 +01:00
|
|
|
preCheck = ''
|
2016-08-25 16:27:39 +01:00
|
|
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
|
|
|
'';
|
2018-08-03 17:52:40 +01:00
|
|
|
configureFlags = stdenv.lib.optional withJson "--json";
|
2010-05-12 14:17:19 +01:00
|
|
|
|
2012-11-08 19:05:49 +00:00
|
|
|
preBuild=''
|
|
|
|
export USER=nonexistent-but-specified-user
|
|
|
|
'';
|
|
|
|
|
2010-05-12 14:17:19 +01:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
2010-05-12 14:17:19 +01:00
|
|
|
INSTALLDIR=$out/bin make install
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Simple, high-reliability, distributed software configuration management";
|
2010-05-12 14:17:19 +01: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 14:17:19 +01: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 14:17:19 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|