ovn: fix more missing ovs binaries (#378038)
[NixPkgs.git] / pkgs / data / themes / ant-theme / ant-nebula.nix
blob3e7a31902cc20edab8e8e435e1b23c8ab96eb3b2
2   lib,
3   stdenv,
4   fetchurl,
5   gtk-engine-murrine,
6 }:
8 let
9   themeName = "Ant-Nebula";
11 stdenv.mkDerivation rec {
12   pname = "ant-nebula-theme";
13   version = "1.3.0";
15   src = fetchurl {
16     url = "https://github.com/EliverLara/${themeName}/releases/download/v${version}/${themeName}.tar";
17     sha256 = "1xpgw577nmgjk547mg2vvv0gdai60srgncykm5pb1w8dnlk69jbz";
18   };
20   propagatedUserEnvPkgs = [
21     gtk-engine-murrine
22   ];
24   installPhase = ''
25     runHook preInstall
26     mkdir -p $out/share/themes/${themeName}
27     cp -a * $out/share/themes/${themeName}
28     rm -r $out/share/themes/${themeName}/{Art,LICENSE,README.md,gtk-2.0/render-assets.sh}
29     runHook postInstall
30   '';
32   meta = with lib; {
33     description = "Nebula variant of the Ant theme";
34     homepage = "https://github.com/EliverLara/${themeName}";
35     license = licenses.gpl3;
36     platforms = platforms.all;
37     maintainers = with maintainers; [ alexarice ];
38   };