qxt: init at 0.6.2

This commit is contained in:
Forkk 2015-04-14 13:36:49 -05:00
parent c5457ebd9b
commit 78eb702d35
3 changed files with 35 additions and 0 deletions

View file

@ -74,6 +74,7 @@
falsifian = "James Cook <james.cook@utoronto.ca>";
flosse = "Markus Kohlhase <mail@markus-kohlhase.de>";
fluffynukeit = "Daniel Austin <dan@fluffynukeit.com>";
forkk = "Andrew Okin <forkk@forkk.net>";
fpletz = "Franz Pletz <fpletz@fnordicwalking.de>";
ftrvxmtrx = "Siarhei Zirukin <ftrvxmtrx@gmail.com>";
funfunctor = "Edward O'Callaghan <eocallaghan@alterapraxis.com>";

View file

@ -0,0 +1,32 @@
{ stdenv, which, coreutils, fetchzip, qt4 }:
stdenv.mkDerivation rec {
name = "qxt-${version}";
version = "0.6.2";
src = fetchzip {
url = "http://dev.libqxt.org/libqxt/get/v${version}.tar.gz";
sha256 = "0zmqfn0h8cpky7wgaaxlfh0l89r9r0isi87587kaicyap7a6kxwz";
};
buildInputs = [ qt4 which ];
patchPhase = ''
patchShebangs configure
substituteInPlace configure --replace "/bin/pwd" "${coreutils}/bin/pwd"
'';
prefixKey = "-prefix ";
meta = {
homepage = http://libqxt.org;
description = "An extension library for Qt";
longDescription = ''
An extension library for Qt providing a suite of cross-platform utility
classes to add functionality not readily available in the Qt toolkit by Qt
Development Frameworks, Nokia.
'';
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ forkk ];
};
}

View file

@ -7384,6 +7384,8 @@ let
qwt6 = callPackage ../development/libraries/qwt/6.nix { };
qxt = callPackage ../development/libraries/qxt {};
rabbitmq-c = callPackage ../development/libraries/rabbitmq-c {};
rabbitmq-java-client = callPackage ../development/libraries/rabbitmq-java-client {};