2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-08-26 06:41:04 +00:00
|
|
|
, installShellFiles
|
|
|
|
, tcl
|
|
|
|
, libiconv
|
|
|
|
, fetchurl
|
2023-01-20 20:50:58 +00:00
|
|
|
, buildPackages
|
2020-08-26 06:41:04 +00:00
|
|
|
, zlib
|
|
|
|
, openssl
|
|
|
|
, readline
|
2021-10-17 16:02:06 +00:00
|
|
|
, withInternalSqlite ? true
|
2020-08-26 06:41:04 +00:00
|
|
|
, sqlite
|
|
|
|
, ed
|
|
|
|
, which
|
|
|
|
, tcllib
|
|
|
|
, withJson ? true
|
2018-05-10 06:20:53 +00:00
|
|
|
}:
|
2010-05-12 13:17:19 +00:00
|
|
|
|
2023-06-01 16:03:23 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fossil";
|
2023-11-02 23:45:04 +00:00
|
|
|
version = "2.23";
|
2010-05-12 13:17:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-01 16:03:23 +00:00
|
|
|
url = "https://www.fossil-scm.org/home/tarball/version-${finalAttrs.version}/fossil-${finalAttrs.version}.tar.gz";
|
2023-11-02 23:45:04 +00:00
|
|
|
hash = "sha256-dfgI6BNRAYqXFnRtnvGh/huxkEcz6LQYZDiB04GYhZM=";
|
2010-05-12 13:17:19 +00:00
|
|
|
};
|
|
|
|
|
2023-01-20 20:50:58 +00:00
|
|
|
# required for build time tool `./tools/translate.c`
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2021-04-30 23:09:25 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles tcl tcllib ];
|
2020-08-26 06:41:04 +00:00
|
|
|
|
2021-10-17 16:02:06 +00:00
|
|
|
buildInputs = [ zlib openssl readline which ed ]
|
|
|
|
++ lib.optional stdenv.isDarwin libiconv
|
|
|
|
++ lib.optional (!withInternalSqlite) sqlite;
|
2010-11-19 23:10:41 +00:00
|
|
|
|
2021-06-08 16:38:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-05-10 06:20:53 +00:00
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
2020-08-26 06:41:04 +00:00
|
|
|
|
2021-10-17 16:02:06 +00:00
|
|
|
configureFlags =
|
|
|
|
lib.optional (!withInternalSqlite) "--disable-internal-sqlite"
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optional withJson "--json";
|
2020-08-26 06:41:04 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
2012-11-08 19:05:49 +00:00
|
|
|
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
|
2020-08-26 06:41:04 +00:00
|
|
|
|
|
|
|
installManPage fossil.1
|
|
|
|
installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash
|
2010-05-12 13:17:19 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
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.
|
|
|
|
'';
|
2021-06-08 16:38:43 +00:00
|
|
|
homepage = "https://www.fossil-scm.org/";
|
2020-08-26 06:41:04 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ maggesi viric ];
|
2021-06-08 16:38:43 +00:00
|
|
|
platforms = platforms.all;
|
2023-11-02 23:45:56 +00:00
|
|
|
mainProgram = "fossil";
|
2010-05-12 13:17:19 +00:00
|
|
|
};
|
2023-06-01 16:03:23 +00:00
|
|
|
})
|