mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
9b090ccbca
That is because this commit should be merged to both master and release-19.09.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ stdenv, fetchurl, boost, zlib, botan, libidn
|
|
, lua, pcre, sqlite, perl, pkgconfig, expect
|
|
, bzip2, gmp, openssl
|
|
}:
|
|
|
|
let
|
|
version = "1.1";
|
|
perlVersion = stdenv.lib.getVersion perl;
|
|
in
|
|
|
|
assert perlVersion != "";
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "monotone";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "http://monotone.ca/downloads/${version}/monotone-${version}.tar.bz2";
|
|
sha256 = "124cwgi2q86hagslbk5idxbs9j896rfjzryhr6z63r6l485gcp7r";
|
|
};
|
|
|
|
patches = [ ./monotone-1.1-Adapt-to-changes-in-pcre-8.42.patch ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ boost zlib botan libidn lua pcre sqlite expect
|
|
openssl gmp bzip2 ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/${pname}-${version}
|
|
cp -rv contrib/ $out/share/${pname}-${version}/contrib
|
|
mkdir -p $out/${perl.libPrefix}/${perlVersion}
|
|
cp -v contrib/Monotone.pm $out/${perl.libPrefix}/${perlVersion}
|
|
'';
|
|
|
|
#doCheck = true; # some tests fail (and they take VERY long)
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A free distributed version control system";
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|