nixpkgs/pkgs/development/libraries/qtstyleplugins/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

2021-02-06 17:56:59 +00:00
{ lib, mkDerivation, fetchFromGitHub, fetchpatch, qmake, pkg-config, gtk2 }:
2016-12-11 20:08:37 +00:00
2019-08-13 21:52:01 +00:00
mkDerivation {
2021-02-06 17:56:59 +00:00
pname = "qtstyleplugins";
version = "unstable-2017-03-11";
2016-12-11 20:08:37 +00:00
src = fetchFromGitHub {
owner = "qt";
repo = "qtstyleplugins";
rev = "335dbece103e2cbf6c7cf819ab6672c2956b17b3";
sha256 = "085wyn85nrmzr8nv5zv7fi2kqf8rp1gnd30h72s30j55xvhmxvmy";
2016-12-11 20:08:37 +00:00
};
2021-02-06 17:56:59 +00:00
patches = [
(fetchpatch rec {
name = "0001-fix-build-against-Qt-5.15.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/${name}?h=qt5-styleplugins";
sha256 = "j0CgfutqFawy11IqFnlrkfMsMD01NjX/MkfVEVxj1QM=";
})
(fetchpatch rec {
name = "0002-fix-gtk2-background.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/${name}?h=qt5-styleplugins";
sha256 = "qUOkNckrSUEzXY1PUZKfbiCjhNyB5ZBw2IN/j32GKM4=";
})
];
nativeBuildInputs = [ pkg-config qmake ];
2017-06-02 15:40:19 +00:00
buildInputs = [ gtk2 ];
2016-12-11 20:08:37 +00:00
meta = with lib; {
description = "Additional style plugins for Qt5, including BB10, GTK, Cleanlooks, Motif, Plastique";
homepage = "http://blog.qt.io/blog/2012/10/30/cleaning-up-styles-in-qt5-and-adding-fusion/";
2016-12-11 20:08:37 +00:00
license = licenses.lgpl21;
maintainers = [ ];
2016-12-11 20:08:37 +00:00
platforms = platforms.linux;
};
}