nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 33 lines 1.0 kB view raw
1{ lib, stdenv, fetchzip }: 2 3stdenv.mkDerivation rec { 4 version = "7.0.1"; 5 pname = "clearlooks-phenix"; 6 7 src = fetchzip { 8 url = "https://github.com/jpfleury/clearlooks-phenix/archive/${version}.tar.gz"; 9 sha256 = "1b6y4l3rf3c5r4v72fyj3ppvnvw13kvr2a1dyl63ni1jxnlk50kd"; 10 }; 11 12 dontBuild = true; 13 installPhase = '' 14 mkdir -p $out/share/themes/Clearlooks-Phenix 15 cp -r . $out/share/themes/Clearlooks-Phenix/ 16 ''; 17 18 preferLocalBuild = true; 19 20 meta = with lib; { 21 description = "GTK3 port of the Clearlooks theme"; 22 longDescription = '' 23 The Clearlooks-Phénix project aims at creating a GTK3 port of Clearlooks, 24 the default theme for Gnome 2. Style is also included for GTK2, Unity and 25 for Metacity, Openbox and Xfwm4 window managers. 26 ''; 27 homepage = "https://github.com/jpfleury/clearlooks-phenix"; 28 downloadPage = "https://github.com/jpfleury/clearlooks-phenix/releases"; 29 license = licenses.gpl3; 30 maintainers = [ maintainers.prikhi ]; 31 platforms = platforms.linux; 32 }; 33}