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

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

28 lines
770 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";
2022-02-13 07:59:51 +00:00
version = "4.0";
2019-05-19 12:36:08 +00:00
src = fetchFromGitHub {
owner = "lassekongo83";
repo = pname;
rev = "v${version}";
2022-02-13 07:59:51 +00:00
sha256 = "sha256-YKEDXrOAn7pGWb0VcOx7cKHnuX120yPzqtUVnzyLrDQ=";
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 ];
};
}