lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 34 lines 919 B view raw
1{ lib, stdenv, fetchurl, gtk-engine-murrine }: 2 3let 4 themeName = "Ant-Nebula"; 5in 6stdenv.mkDerivation rec { 7 pname = "ant-nebula-theme"; 8 version = "1.3.0"; 9 10 src = fetchurl { 11 url = "https://github.com/EliverLara/${themeName}/releases/download/v${version}/${themeName}.tar"; 12 sha256 = "1xpgw577nmgjk547mg2vvv0gdai60srgncykm5pb1w8dnlk69jbz"; 13 }; 14 15 propagatedUserEnvPkgs = [ 16 gtk-engine-murrine 17 ]; 18 19 installPhase = '' 20 runHook preInstall 21 mkdir -p $out/share/themes/${themeName} 22 cp -a * $out/share/themes/${themeName} 23 rm -r $out/share/themes/${themeName}/{Art,LICENSE,README.md,gtk-2.0/render-assets.sh} 24 runHook postInstall 25 ''; 26 27 meta = with lib; { 28 description = "Nebula variant of the Ant theme"; 29 homepage = "https://github.com/EliverLara/${themeName}"; 30 license = licenses.gpl3; 31 platforms = platforms.all; 32 maintainers = with maintainers; [ alexarice ]; 33 }; 34}