2011-01-14 12:37:26 +00:00
|
|
|
{ stdenv, fetchurl, boost, zlib, botan, libidn
|
2014-06-10 05:20:00 +00:00
|
|
|
, lua, pcre, sqlite, perl, pkgconfig, expect
|
|
|
|
, 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";
|
2011-01-14 12:37:26 +00:00
|
|
|
perlVersion = (builtins.parseDrvName perl.name).version;
|
|
|
|
in
|
|
|
|
|
|
|
|
assert perlVersion != "";
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2009-03-25 16:06:00 +00:00
|
|
|
name = "monotone-${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
|
|
|
|
2014-06-10 05:20:00 +00:00
|
|
|
patches = [ ];
|
2013-02-23 23:31:20 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
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 = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/${name}
|
2010-09-09 20:05:00 +00:00
|
|
|
cp -rv contrib/ $out/share/${name}/contrib
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/lib/perl5/site_perl/${perlVersion}
|
2010-11-02 11:20:24 +00:00
|
|
|
cp -v contrib/Monotone.pm $out/lib/perl5/site_perl/${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)
|
|
|
|
|
2009-07-07 15:05:15 +00:00
|
|
|
meta = {
|
2010-11-02 11:20:24 +00:00
|
|
|
description = "A free distributed version control system";
|
2010-09-09 20:05:00 +00:00
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2011-07-13 09:13:22 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-07-07 15:05:15 +00:00
|
|
|
};
|
2008-01-25 11:56:36 +00:00
|
|
|
}
|