2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-08-26 06:41:04 +00:00
|
|
|
, installShellFiles
|
|
|
|
, tcl
|
|
|
|
, libiconv
|
|
|
|
, fetchurl
|
2024-05-21 21:11:19 +00:00
|
|
|
, fetchpatch
|
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
|
2024-09-26 15:31:42 +00:00
|
|
|
, tclPackages
|
2020-08-26 06:41:04 +00:00
|
|
|
, 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";
|
2024-05-21 21:11:19 +00:00
|
|
|
version = "2.24";
|
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";
|
2024-05-21 21:11:19 +00:00
|
|
|
hash = "sha256-lc08F2g1vrm4lwdvpYFx/jCwspH2OHu1R0nvvfqWL0w=";
|
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 ];
|
|
|
|
|
2024-09-26 15:31:42 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles tcl tclPackages.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.hostPlatform.isDarwin libiconv
|
|
|
|
++ lib.optional (!withInternalSqlite) sqlite;
|
2010-11-19 23:10:41 +00:00
|
|
|
|
2021-06-08 16:38:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2024-10-21 09:34:19 +00:00
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
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
|
|
|
|
2024-05-21 21:11:19 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://fossil-scm.org/home/vpatch?from=8be0372c10510437&to=5ad708085a90365f";
|
|
|
|
extraPrefix = "";
|
|
|
|
hash = "sha256-KxF40wiEY3R1RFM0/YOmdNiedQHzs+vyMXslnqLtqQ4=";
|
|
|
|
name = "fossil-disable-tests.patch";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://fossil-scm.org/home/vpatch?from=fb4e90b662803e47&to=17c01c549e73c6b8";
|
|
|
|
extraPrefix = "";
|
|
|
|
hash = "sha256-b0JSDWEBTlLWFr5rO+g0biPzUfVsdeAw71DR7/WQKzU=";
|
|
|
|
name = "fossil-fix-json-test.patch";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://fossil-scm.org/home/vpatch?from=5ad708085a90365f&to=fb4e90b662803e47";
|
|
|
|
extraPrefix = "";
|
|
|
|
hash = "sha256-bbWUrlhPxC/DQQDeC3gG0jGfxQ6F7YkxINqg3baf+j0=";
|
|
|
|
name = "fossil-comment-utf-tests.patch";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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;
|
2024-07-26 17:58:06 +00:00
|
|
|
maintainers = with maintainers; [ maggesi ];
|
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
|
|
|
})
|