mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
40ed226507
(cherry picked from commit 23fdbaa37599f490435056b9865023870656571b) [dezgeg: Un-mark shotcut, tokei & uchiwa that do build on master]
35 lines
968 B
Nix
35 lines
968 B
Nix
{ stdenv, which, coreutils, fetchzip, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qxt-${version}";
|
|
version = "0.6.2";
|
|
|
|
src = fetchzip {
|
|
url = "https://bitbucket.org/libqxt/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;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ forkk ];
|
|
broken = true;
|
|
};
|
|
}
|