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

38 lines
877 B
Nix
Raw Normal View History

2021-01-17 02:14:13 +00:00
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, sassc, gdk-pixbuf, librsvg, gtk-engine-murrine }:
2016-05-03 09:45:17 +00:00
stdenv.mkDerivation rec {
2017-02-24 09:22:42 +00:00
pname = "greybird";
2021-09-25 13:37:50 +00:00
version = "3.22.15";
2016-05-03 09:45:17 +00:00
src = fetchFromGitHub {
owner = "shimmerproject";
2019-02-10 15:38:12 +00:00
repo = pname;
2017-04-18 16:54:31 +00:00
rev = "v${version}";
2021-09-25 13:37:50 +00:00
sha256 = "1fk66fxy2lif9ngazlgkpsziw216i4b1ld2zm97cadf7n97376g9";
2016-05-03 09:45:17 +00:00
};
2018-09-17 14:36:53 +00:00
nativeBuildInputs = [
meson
ninja
2021-01-17 02:14:13 +00:00
pkg-config
2018-09-17 14:36:53 +00:00
sassc
];
2016-08-18 14:23:05 +00:00
2018-09-17 14:36:53 +00:00
buildInputs = [
2019-05-22 11:03:39 +00:00
gdk-pixbuf
2018-09-17 14:36:53 +00:00
librsvg
];
2018-09-17 14:36:53 +00:00
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
meta = with lib; {
description = "Grey and blue theme from the Shimmer Project for GTK-based environments";
homepage = "https://github.com/shimmerproject/Greybird";
license = [ licenses.gpl2Plus ]; # or alternatively: cc-by-nc-sa-30 or later
2018-09-17 14:36:53 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
2016-05-03 09:45:17 +00:00
};
}