2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-08-26 07:41:04 +01:00
|
|
|
, installShellFiles
|
|
|
|
, tcl
|
|
|
|
, libiconv
|
|
|
|
, fetchurl
|
|
|
|
, zlib
|
|
|
|
, openssl
|
|
|
|
, readline
|
|
|
|
, sqlite
|
|
|
|
, ed
|
|
|
|
, which
|
|
|
|
, tcllib
|
|
|
|
, withJson ? true
|
2018-05-10 07:20:53 +01:00
|
|
|
}:
|
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";
|
2021-06-08 17:38:43 +01:00
|
|
|
version = "2.15.1";
|
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";
|
2021-06-08 17:38:43 +01:00
|
|
|
sha256 = "sha256-gNJ5I8ZjsqLHEPiujNVJhi4E+MBChXBidMNK48jKF9E=";
|
2010-05-12 14:17:19 +01:00
|
|
|
};
|
|
|
|
|
2021-05-01 00:09:25 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles tcl tcllib ];
|
2020-08-26 07:41:04 +01:00
|
|
|
|
2016-08-25 16:27:39 +01:00
|
|
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optional stdenv.isDarwin libiconv;
|
2010-11-19 23:10:41 +00:00
|
|
|
|
2021-06-08 17:38:43 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-05-10 07:20:53 +01:00
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
2020-08-26 07:41:04 +01:00
|
|
|
|
2020-08-26 07:43:19 +01:00
|
|
|
configureFlags = [ "--disable-internal-sqlite" ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optional withJson "--json";
|
2020-08-26 07:41:04 +01:00
|
|
|
|
|
|
|
preBuild = ''
|
2012-11-08 19:05:49 +00:00
|
|
|
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
|
2020-08-26 07:41:04 +01:00
|
|
|
|
|
|
|
installManPage fossil.1
|
|
|
|
installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash
|
2010-05-12 14:17:19 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
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.
|
|
|
|
'';
|
2021-06-08 17:38:43 +01:00
|
|
|
homepage = "https://www.fossil-scm.org/";
|
2020-08-26 07:41:04 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ maggesi viric ];
|
2021-06-08 17:38:43 +01:00
|
|
|
platforms = platforms.all;
|
2010-05-12 14:17:19 +01:00
|
|
|
};
|
|
|
|
}
|