3e36832e00
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5/bin/fossil --help` got 0 exit code - ran `/nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5/bin/fossil help` got 0 exit code - ran `/nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5/bin/fossil version` and found version 2.5 - ran `/nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5/bin/fossil --help` and found version 2.5 - ran `/nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5/bin/fossil help` and found version 2.5 - found 2.5 with grep in /nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5 - found 2.5 in filename of file in /nix/store/14r53ilafr0lhqc5czfifp4bwqk5rh1c-fossil-2.5
62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{stdenv, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, ed, which
|
|
, tcllib, withJson ? true}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fossil-${version}";
|
|
version = "2.5";
|
|
|
|
src = fetchurl {
|
|
urls =
|
|
[
|
|
"https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
|
|
];
|
|
name = "${name}.tar.gz";
|
|
sha256 = "1lxawkhr1ki9fqw8076fxib2b1w673449yzb6vxjshqzh5h77c7r";
|
|
};
|
|
|
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
|
nativeBuildInputs = [ tcl ];
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
preCheck = ''
|
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
|
'';
|
|
configureFlags = if withJson then "--json" else "";
|
|
|
|
preBuild=''
|
|
export USER=nonexistent-but-specified-user
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
INSTALLDIR=$out/bin make install
|
|
'';
|
|
|
|
crossAttrs = {
|
|
doCheck = false;
|
|
makeFlags = [ "TCC=$CC" ];
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple, high-reliability, distributed software configuration management";
|
|
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/;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
platforms = with stdenv.lib.platforms; all;
|
|
maintainers = [ #Add your name here!
|
|
stdenv.lib.maintainers.z77z
|
|
stdenv.lib.maintainers.viric
|
|
];
|
|
};
|
|
}
|