24 lines
737 B
Nix
Raw Normal View History

{ stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, gtk2 }:
2016-12-11 23:08:37 +03:00
2019-08-13 21:52:01 +00:00
mkDerivation {
name = "qtstyleplugins-2017-03-11";
2016-12-11 23:08:37 +03:00
src = fetchFromGitHub {
owner = "qt";
repo = "qtstyleplugins";
rev = "335dbece103e2cbf6c7cf819ab6672c2956b17b3";
sha256 = "085wyn85nrmzr8nv5zv7fi2kqf8rp1gnd30h72s30j55xvhmxvmy";
2016-12-11 23:08:37 +03:00
};
2017-06-02 10:40:19 -05:00
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ gtk2 ];
2016-12-11 23:08:37 +03:00
meta = with stdenv.lib; {
description = "Additional style plugins for Qt5, including BB10, GTK, Cleanlooks, Motif, Plastique";
2016-12-11 23:08:37 +03:00
homepage = http://blog.qt.io/blog/2012/10/30/cleaning-up-styles-in-qt5-and-adding-fusion/;
license = licenses.lgpl21;
maintainers = [ maintainers.gnidorah ];
platforms = platforms.linux;
};
}