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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
793 B
Nix
Raw Normal View History

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