Add kbibtex
svn path=/nixpkgs/trunk/; revision=34404
This commit is contained in:
parent
3640b0c1e9
commit
f6e6e4287d
18
pkgs/applications/office/kbibtex/default.nix
Normal file
18
pkgs/applications/office/kbibtex/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl, kdelibs, libxslt, popplerQt4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "kbibtex";
|
||||
version = "0.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.gna.org/${pname}/${version}/${name}.tar.bz2";
|
||||
sha256 = "1hq0az0dp96195z26wjfwj9ynd57pfv13f1xcl5vbsswcjfrczws";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -e '25i#include <QModelIndex>' -i src/gui/preferences/settingsabstractwidget.h
|
||||
'';
|
||||
|
||||
buildInputs = [ kdelibs libxslt popplerQt4 ];
|
||||
}
|
@ -8091,6 +8091,8 @@ let
|
||||
|
||||
kadu = callPackage ../applications/networking/instant-messengers/kadu { };
|
||||
|
||||
kbibtex = callPackage ../applications/office/kbibtex { };
|
||||
|
||||
kbluetooth = callPackage ../tools/bluetooth/kbluetooth { };
|
||||
|
||||
kde_wacomtablet = callPackage ../applications/misc/kde-wacomtablet { };
|
||||
|
Loading…
Reference in New Issue
Block a user