mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
28 lines
774 B
Nix
28 lines
774 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stilo-themes";
|
|
version = "3.38-1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lassekongo83";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "09xarzp0j0a8cqzcg0447jl5cgvl6ccj5f00dik1hy2nlrz7d8ad";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja sassc ];
|
|
|
|
buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
meta = with lib; {
|
|
description = "Minimalistic GTK, gnome shell and Xfce themes";
|
|
homepage = "https://github.com/lassekongo83/stilo-themes";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|