5b59bb4d28
The tkabber plugins really do not require a dependency on tkabber itself, so let's drop it. In addition, this also removes creating a $out/bin dir, which was left back then when creating the tkabber-plugins derivation by copy & pasting stuff from the main tkabber derivation. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
16 lines
357 B
Nix
16 lines
357 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tkabber-plugins-${version}";
|
|
version = "0.11.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.jabber.ru/tkabber/tkabber-plugins-${version}.tar.gz";
|
|
sha256 = "0jxriqvsckbih5a4lpisxy6wjw022wsz5j5n171gz0q3xw19dbgz";
|
|
};
|
|
|
|
configurePhase = ''
|
|
sed -e "s@/usr/local@$out@" -i Makefile
|
|
'';
|
|
}
|