2021-05-08 23:10:23 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchFromGitHub, boost, zlib, botan2, libidn
|
|
|
|
, lua, pcre, sqlite, perl, pkg-config, expect, less
|
2014-06-10 06:20:00 +01:00
|
|
|
, bzip2, gmp, openssl
|
2021-05-08 23:10:23 +01:00
|
|
|
, autoreconfHook, texinfo
|
2014-06-10 06:20:00 +01:00
|
|
|
}:
|
2008-01-25 11:56:36 +00:00
|
|
|
|
2011-07-13 10:13:28 +01:00
|
|
|
let
|
2021-05-08 23:10:23 +01:00
|
|
|
version = "1.1-unstable-2021-05-01";
|
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 22:52:01 +01:00
|
|
|
pname = "monotone";
|
|
|
|
inherit version;
|
2011-07-13 10:13:28 +01:00
|
|
|
|
2021-05-08 23:10:23 +01:00
|
|
|
# src = fetchurl {
|
|
|
|
# url = "http://monotone.ca/downloads/${version}/monotone-${version}.tar.bz2";
|
|
|
|
# sha256 = "124cwgi2q86hagslbk5idxbs9j896rfjzryhr6z63r6l485gcp7r";
|
|
|
|
# };
|
|
|
|
|
|
|
|
# My mirror of upstream Monotone repository
|
|
|
|
# Could fetchmtn, but circular dependency; snapshot requested
|
|
|
|
# https://lists.nongnu.org/archive/html/monotone-devel/2021-05/msg00000.html
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "7c6f434c";
|
|
|
|
repo = "monotone-mirror";
|
|
|
|
rev = "b30b0e1c16def043d2dad57d1467d5bfdecdb070";
|
|
|
|
hash = "sha256:1hfy8vaap3184cd7h3qhz0da7c992idkc6q2nz9frhma45c5vgmd";
|
2008-01-25 11:56:36 +00:00
|
|
|
};
|
2011-07-13 10:13:28 +01:00
|
|
|
|
2021-08-17 18:27:34 +01:00
|
|
|
patches = [
|
|
|
|
./monotone-1.1-Adapt-to-changes-in-pcre-8.42.patch
|
|
|
|
./monotone-1.1-adapt-to-botan2.patch
|
|
|
|
];
|
2013-02-23 23:31:20 +00:00
|
|
|
|
2021-05-08 23:10:23 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -e 's@/usr/bin/less@${less}/bin/less@' -i src/unix/terminal.cc
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook texinfo ];
|
|
|
|
buildInputs = [ boost zlib botan2 libidn lua pcre sqlite expect
|
|
|
|
openssl gmp bzip2 perl ];
|
2011-07-13 10:13:28 +01:00
|
|
|
|
2009-10-15 12:13:21 +01:00
|
|
|
postInstall = ''
|
2019-08-13 22:52:01 +01: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}
|
2021-05-08 23:10:23 +01:00
|
|
|
|
|
|
|
patchShebangs "$out/share/monotone"
|
|
|
|
patchShebangs "$out/share/${pname}-${version}"
|
|
|
|
|
|
|
|
find "$out"/share/{doc/monotone,${pname}-${version}}/contrib/ -type f | xargs sed -e 's@! */usr/bin/@!/usr/bin/env @; s@! */bin/bash@!/usr/bin/env bash@' -i
|
2009-10-15 12:13:21 +01:00
|
|
|
'';
|
2011-07-13 10:13:28 +01: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 14:12:27 +01:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.unix;
|
2021-05-08 23:10:23 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2009-07-07 16:05:15 +01:00
|
|
|
};
|
2008-01-25 11:56:36 +00:00
|
|
|
}
|