2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, boost, zlib, botan, libidn
|
2021-01-19 06:50:56 +00:00
|
|
|
, lua, pcre, sqlite, perl, pkg-config, expect
|
2014-06-10 05:20:00 +00:00
|
|
|
, bzip2, gmp, openssl
|
|
|
|
}:
|
2008-01-25 11:56:36 +00:00
|
|
|
|
2011-07-13 09:13:28 +00:00
|
|
|
let
|
2014-06-10 05:20:00 +00:00
|
|
|
version = "1.1";
|
2021-01-15 13:21:58 +00:00
|
|
|
perlVersion = lib.getVersion perl;
|
2011-01-14 12:37:26 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
assert perlVersion != "";
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "monotone";
|
|
|
|
inherit version;
|
2011-07-13 09:13:28 +00:00
|
|
|
|
2008-01-25 11:56:36 +00:00
|
|
|
src = fetchurl {
|
2011-03-28 20:26:29 +00:00
|
|
|
url = "http://monotone.ca/downloads/${version}/monotone-${version}.tar.bz2";
|
2014-06-10 05:20:00 +00:00
|
|
|
sha256 = "124cwgi2q86hagslbk5idxbs9j896rfjzryhr6z63r6l485gcp7r";
|
2008-01-25 11:56:36 +00:00
|
|
|
};
|
2011-07-13 09:13:28 +00:00
|
|
|
|
2018-08-02 03:46:34 +00:00
|
|
|
patches = [ ./monotone-1.1-Adapt-to-changes-in-pcre-8.42.patch ];
|
2013-02-23 23:31:20 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-09-08 13:12:27 +00:00
|
|
|
buildInputs = [ boost zlib botan libidn lua pcre sqlite expect
|
2014-06-10 05:20:00 +00:00
|
|
|
openssl gmp bzip2 ];
|
2011-07-13 09:13:28 +00:00
|
|
|
|
2009-10-15 11:13:21 +00:00
|
|
|
postInstall = ''
|
2019-08-13 21:52:01 +00:00
|
|
|
mkdir -p $out/share/${pname}-${version}
|
|
|
|
cp -rv contrib/ $out/share/${pname}-${version}/contrib
|
2018-12-15 03:50:31 +00:00
|
|
|
mkdir -p $out/${perl.libPrefix}/${perlVersion}
|
|
|
|
cp -v contrib/Monotone.pm $out/${perl.libPrefix}/${perlVersion}
|
2009-10-15 11:13:21 +00:00
|
|
|
'';
|
2011-07-13 09:13:28 +00:00
|
|
|
|
2013-02-23 23:31:20 +00:00
|
|
|
#doCheck = true; # some tests fail (and they take VERY long)
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2010-11-02 11:20:24 +00:00
|
|
|
description = "A free distributed version control system";
|
2018-09-08 13:12:27 +00:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2;
|
2009-07-07 15:05:15 +00:00
|
|
|
};
|
2008-01-25 11:56:36 +00:00
|
|
|
}
|