1 { lib, stdenv, which, coreutils, fetchzip, qt4 }:
3 stdenv.mkDerivation rec {
8 url = "https://bitbucket.org/libqxt/libqxt/get/v${version}.tar.gz";
9 sha256 = "0zmqfn0h8cpky7wgaaxlfh0l89r9r0isi87587kaicyap7a6kxwz";
12 buildInputs = [ qt4 which ];
15 patchShebangs configure
16 substituteInPlace configure --replace "/bin/pwd" "${coreutils}/bin/pwd"
19 prefixKey = "-prefix ";
22 homepage = "http://libqxt.org";
23 description = "An extension library for Qt";
25 An extension library for Qt providing a suite of cross-platform utility
26 classes to add functionality not readily available in the Qt toolkit by Qt
27 Development Frameworks, Nokia.
29 license = lib.licenses.gpl2;
30 platforms = lib.platforms.linux;
31 maintainers = with lib.maintainers; [ forkk ];