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

28 lines
774 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
2019-05-19 12:36:08 +00:00
stdenv.mkDerivation rec {
pname = "stilo-themes";
2020-10-11 03:25:48 +00:00
version = "3.36-3";
2019-05-19 12:36:08 +00:00
src = fetchFromGitHub {
owner = "lassekongo83";
repo = pname;
rev = "v${version}";
2020-10-11 03:25:48 +00:00
sha256 = "0haxzqxyfx3rc305w7f744fp2xb6j7yn28ldynnvmm47h7ga3as3";
2019-05-19 12:36:08 +00:00
};
nativeBuildInputs = [ meson ninja sassc ];
2019-05-22 11:03:39 +00:00
buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
2019-05-19 12:36:08 +00:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
meta = with lib; {
2019-10-10 14:52:57 +00:00
description = "Minimalistic GTK, gnome shell and Xfce themes";
homepage = "https://github.com/lassekongo83/stilo-themes";
2020-10-11 03:25:48 +00:00
license = licenses.gpl3Only;
2019-05-19 12:36:08 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}