ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
30 lines
753 B
Nix
30 lines
753 B
Nix
{ stdenv, fetchurl, gettext, apr, aprutil, subversion, db4, kdelibs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kdesvn-1.5.5";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/downloads/${name}.tar.bz2";
|
|
sha256 = "02sb34p04dyd88ksxvpiffhxqwmhs3yv1wif9m8w0fly9hvy1zk7";
|
|
};
|
|
|
|
prePatch = ''
|
|
sed -i -e "s|/usr|${subversion}|g" src/svnqt/cmakemodules/FindSubversion.cmake
|
|
'';
|
|
|
|
patches = [ ./docbook.patch ./virtual_inheritance.patch ];
|
|
|
|
|
|
buildInputs = [ apr aprutil subversion db4 kdelibs ];
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
meta = {
|
|
description = "KDE SVN front-end";
|
|
license = "GPL";
|
|
homepage = http://kdesvn.alwins-world.de;
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
inherit (kdelibs.meta) platforms;
|
|
};
|
|
}
|