2012-01-27 00:24:40 +01:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, gettext
|
2012-01-24 23:09:17 +01:00
|
|
|
, kdelibs, kdebase_workspace, perl
|
|
|
|
, openssl, phonon, automoc4
|
|
|
|
, libX11, libXext, libXft
|
|
|
|
, unrar, p7zip, par2cmdline, coreutils
|
|
|
|
}:
|
|
|
|
|
2012-02-11 10:06:09 +01:00
|
|
|
let version = "0.8.1";
|
2012-01-24 23:09:17 +01:00
|
|
|
name = "kwooty-${version}";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/kwooty/${name}.tar.gz";
|
2012-02-11 10:06:09 +01:00
|
|
|
sha256 = "746ed50ec3c067711932c89dc3ee5527c126f37c6922b3eda49535eb83c245e4";
|
2012-01-24 23:09:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./searchPath.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
echo "Changing paths to archive utilities to the nix store";
|
|
|
|
substituteInPlace "src/utility.cpp" \
|
|
|
|
--replace "/usr/bin/unrar" "${unrar}/bin" \
|
|
|
|
--replace "/usr/bin/unpar" "${par2cmdline}/bin" \
|
|
|
|
--replace "/usr/bin/7z" "${p7zip}/bin" \
|
|
|
|
--replace "/usr/bin/nice" "${coreutils}/bin/nice"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs =
|
2012-01-27 00:24:40 +01:00
|
|
|
[ stdenv perl cmake qt4 gettext automoc4 openssl
|
2012-01-24 23:09:17 +01:00
|
|
|
kdelibs kdebase_workspace phonon
|
|
|
|
libX11 libXext libXft
|
|
|
|
];
|
|
|
|
|
2012-02-29 13:54:35 +01:00
|
|
|
meta = {
|
2012-02-11 10:06:09 +01:00
|
|
|
description = "Binary news reader of KDE";
|
2012-01-24 23:09:17 +01:00
|
|
|
};
|
|
|
|
}
|