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 14:36:08 +02:00
stdenv.mkDerivation rec {
pname = "stilo-themes";
2022-02-13 08:59:51 +01:00
version = "4.0";
2019-05-19 14:36:08 +02:00
src = fetchFromGitHub {
owner = "lassekongo83";
repo = pname;
rev = "v${version}";
2022-02-13 08:59:51 +01:00
sha256 = "sha256-YKEDXrOAn7pGWb0VcOx7cKHnuX120yPzqtUVnzyLrDQ=";
2019-05-19 14:36:08 +02:00
};
nativeBuildInputs = [ meson ninja sassc ];
2019-05-22 13:03:39 +02:00
buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
2019-05-19 14:36:08 +02:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
meta = with lib; {
2019-10-10 16:52:57 +02:00
description = "Minimalistic GTK, gnome shell and Xfce themes";
homepage = "https://github.com/lassekongo83/stilo-themes";
2020-10-11 05:25:48 +02:00
license = licenses.gpl3Only;
2019-05-19 14:36:08 +02:00
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}