mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
69 lines
1.7 KiB
Nix
69 lines
1.7 KiB
Nix
{ stdenv
|
|
, installShellFiles
|
|
, tcl
|
|
, libiconv
|
|
, fetchurl
|
|
, zlib
|
|
, openssl
|
|
, readline
|
|
, sqlite
|
|
, ed
|
|
, which
|
|
, tcllib
|
|
, withJson ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fossil";
|
|
version = "2.11.1";
|
|
|
|
src = fetchurl {
|
|
urls =
|
|
[
|
|
"https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
|
|
];
|
|
name = "${pname}-${version}.tar.gz";
|
|
sha256 = "1sxq1hn87fdikhbg9y3v4sjy4gxaifnx4dig8nx6xwd5mm7z74dk";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles tcl ];
|
|
|
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
|
|
configureFlags = [ "--disable-internal-sqlite" ]
|
|
++ stdenv.lib.optional withJson "--json";
|
|
|
|
preCheck = ''
|
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
|
'';
|
|
|
|
preBuild = ''
|
|
export USER=nonexistent-but-specified-user
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
INSTALLDIR=$out/bin make install
|
|
|
|
installManPage fossil.1
|
|
installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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 = licenses.bsd2;
|
|
maintainers = with maintainers; [ maggesi viric ];
|
|
};
|
|
}
|