488da5ad7d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fossil/versions
56 lines
1.6 KiB
Nix
56 lines
1.6 KiB
Nix
{ stdenv
|
|
, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, ed, which
|
|
, tcllib, withJson ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fossil-${version}";
|
|
version = "2.8";
|
|
|
|
src = fetchurl {
|
|
urls =
|
|
[
|
|
"https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
|
|
];
|
|
name = "${name}.tar.gz";
|
|
sha256 = "0pbinf8d2kj1j7niblhzjd2l2khg6r2pn2xvig6gavz27p3vwcka";
|
|
};
|
|
|
|
buildInputs = [ zlib openssl readline sqlite which ed ]
|
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
|
nativeBuildInputs = [ tcl ];
|
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
preCheck = ''
|
|
export TCLLIBPATH="${tcllib}/lib/tcllib${tcllib.version}"
|
|
'';
|
|
configureFlags = stdenv.lib.optional withJson "--json";
|
|
|
|
preBuild=''
|
|
export USER=nonexistent-but-specified-user
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
INSTALLDIR=$out/bin make install
|
|
'';
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|