nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 46 lines 793 B view raw
1{ lib, stdenv 2, fetchFromGitHub 3, meson 4, ninja 5, gdk-pixbuf 6, gtk_engines 7, gtk-engine-murrine 8, librsvg 9, sassc 10}: 11 12stdenv.mkDerivation rec { 13 pname = "plano-theme"; 14 version = "4.0"; 15 16 src = fetchFromGitHub { 17 owner = "lassekongo83"; 18 repo = pname; 19 rev = "v${version}"; 20 sha256 = "sha256-slGr2nsdKng6zaVDeXWFAWKIxZbcnOLU6RH6wM0293E="; 21 }; 22 23 nativeBuildInputs = [ 24 meson 25 ninja 26 sassc 27 ]; 28 29 buildInputs = [ 30 gdk-pixbuf 31 gtk_engines 32 librsvg 33 ]; 34 35 propagatedUserEnvPkgs = [ 36 gtk-engine-murrine 37 ]; 38 39 meta = with lib; { 40 description = "Flat theme for GNOME and Xfce"; 41 homepage = "https://github.com/lassekongo83/plano-theme"; 42 license = licenses.gpl3Only; 43 platforms = platforms.unix; 44 maintainers = [ maintainers.romildo ]; 45 }; 46}