2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-08-26 08:41:04 +02:00
|
|
|
, installShellFiles
|
|
|
|
, tcl
|
|
|
|
, libiconv
|
|
|
|
, fetchurl
|
|
|
|
, zlib
|
|
|
|
, openssl
|
|
|
|
, readline
|
2021-10-17 18:02:06 +02:00
|
|
|
, withInternalSqlite ? true
|
2020-08-26 08:41:04 +02:00
|
|
|
, sqlite
|
|
|
|
, ed
|
|
|
|
, which
|
|
|
|
, tcllib
|
|
|
|
, withJson ? true
|
2018-05-10 08:20:53 +02:00
|
|
|
}:
|
2010-05-12 15:17:19 +02:00
|
|
|
|
2015-03-26 08:12:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fossil";
|
2022-02-24 18:32:32 +01:00
|
|
|
version = "2.18";
|
2010-05-12 15:17:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-28 21:39:46 +02:00
|
|
|
url = "https://www.fossil-scm.org/home/tarball/version-${version}/fossil-${version}.tar.gz";
|
2022-02-24 18:32:32 +01:00
|
|
|
sha256 = "0iimdzfdl5687xyqxfadbn640x45n3933q1nfx7b32rl4v3vk778";
|
2010-05-12 15:17:19 +02:00
|
|
|
};
|
|
|
|
|
2021-05-01 01:09:25 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles tcl tcllib ];
|
2020-08-26 08:41:04 +02:00
|
|
|
|
2021-10-17 18:02:06 +02:00
|
|
|
buildInputs = [ zlib openssl readline which ed ]
|
|
|
|
++ lib.optional stdenv.isDarwin libiconv
|
|
|
|
++ lib.optional (!withInternalSqlite) sqlite;
|
2010-11-20 00:10:41 +01:00
|
|
|
|
2021-06-08 18:38:43 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-05-10 08:20:53 +02:00
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
2020-08-26 08:41:04 +02:00
|
|
|
|
2021-10-17 18:02:06 +02:00
|
|
|
configureFlags =
|
|
|
|
lib.optional (!withInternalSqlite) "--disable-internal-sqlite"
|
2021-01-15 14:21:58 +01:00
|
|
|
++ lib.optional withJson "--json";
|
2020-08-26 08:41:04 +02:00
|
|
|
|
|
|
|
preBuild = ''
|
2012-11-08 20:05:49 +01:00
|
|
|
export USER=nonexistent-but-specified-user
|
|
|
|
'';
|
|
|
|
|
2010-05-12 15:17:19 +02:00
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2010-05-12 15:17:19 +02:00
|
|
|
INSTALLDIR=$out/bin make install
|
2020-08-26 08:41:04 +02:00
|
|
|
|
|
|
|
installManPage fossil.1
|
|
|
|
installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash
|
2010-05-12 15:17:19 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Simple, high-reliability, distributed software configuration management";
|
2010-05-12 15:17:19 +02: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 18:38:43 +02:00
|
|
|
homepage = "https://www.fossil-scm.org/";
|
2020-08-26 08:41:04 +02:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ maggesi viric ];
|
2021-06-08 18:38:43 +02:00
|
|
|
platforms = platforms.all;
|
2010-05-12 15:17:19 +02:00
|
|
|
};
|
|
|
|
}
|