nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 27 lines 770 B view raw
1{ lib, stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }: 2 3stdenv.mkDerivation rec { 4 pname = "stilo-themes"; 5 version = "4.0"; 6 7 src = fetchFromGitHub { 8 owner = "lassekongo83"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-YKEDXrOAn7pGWb0VcOx7cKHnuX120yPzqtUVnzyLrDQ="; 12 }; 13 14 nativeBuildInputs = [ meson ninja sassc ]; 15 16 buildInputs = [ gdk-pixbuf librsvg gtk_engines ]; 17 18 propagatedUserEnvPkgs = [ gtk-engine-murrine ]; 19 20 meta = with lib; { 21 description = "Minimalistic GTK, gnome shell and Xfce themes"; 22 homepage = "https://github.com/lassekongo83/stilo-themes"; 23 license = licenses.gpl3Only; 24 platforms = platforms.linux; 25 maintainers = [ maintainers.romildo ]; 26 }; 27}