nixpkgs/pkgs/data/themes/plano/default.nix

47 lines
797 B
Nix
Raw Normal View History

{ lib, stdenv
2020-05-24 16:56:16 +00:00
, fetchFromGitHub
, meson
, ninja
2020-05-24 16:56:16 +00:00
, gdk-pixbuf
, gtk_engines
, gtk-engine-murrine
, librsvg
, sassc
2020-05-24 16:56:16 +00:00
}:
2018-01-12 14:51:30 +00:00
stdenv.mkDerivation rec {
2019-02-08 20:07:28 +00:00
pname = "plano-theme";
2021-05-09 15:37:37 +00:00
version = "3.38-1";
2018-01-12 14:51:30 +00:00
src = fetchFromGitHub {
owner = "lassekongo83";
2019-02-08 20:07:28 +00:00
repo = pname;
2018-01-12 14:51:30 +00:00
rev = "v${version}";
2021-05-09 15:37:37 +00:00
sha256 = "0g2mwvzc04z3dsdfhwqgw9s7987406pv22s9rbazfvprk4ddc5b6";
2018-01-12 14:51:30 +00:00
};
nativeBuildInputs = [
meson
ninja
sassc
];
2020-05-24 16:56:16 +00:00
buildInputs = [
gdk-pixbuf
gtk_engines
librsvg
];
2018-01-12 14:51:30 +00:00
2020-05-24 16:56:16 +00:00
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
2018-01-12 14:51:30 +00:00
meta = with lib; {
2019-10-10 14:02:57 +00:00
description = "Flat theme for GNOME and Xfce";
2020-01-09 09:54:00 +00:00
homepage = "https://github.com/lassekongo83/plano-theme";
2020-10-11 03:29:55 +00:00
license = licenses.gpl3Only;
2018-09-19 14:02:33 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
2018-01-12 14:51:30 +00:00
};
}