summaryrefslogtreecommitdiff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJosé Romildo <malaquias@gmail.com>2024-07-08 11:45:03 -0300
committerJosé Romildo <malaquias@gmail.com>2024-07-08 11:46:51 -0300
commit5d352d2978415c03fcfc892e41bbaff7a5523f05 (patch)
tree12cd46dee6a55495f0473ef8a1e31d4582aeef0b /pkgs/data
parentMerge pull request #324963 from ExpidusOS/feat/labeler (diff)
downloadnixpkgs-5d352d2978415c03fcfc892e41bbaff7a5523f05.tar.gz
marwaita-ubuntu: move to pkgs/by-name/ma/
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/marwaita-ubuntu/default.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkgs/data/themes/marwaita-ubuntu/default.nix b/pkgs/data/themes/marwaita-ubuntu/default.nix
deleted file mode 100644
index 4190b1c0c3d2..000000000000
--- a/pkgs/data/themes/marwaita-ubuntu/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, gdk-pixbuf
-, gtk-engine-murrine
-, gtk_engines
-, librsvg
-, gitUpdater
-}:
-
-stdenv.mkDerivation rec {
- pname = "marwaita-ubuntu";
- version = "17.0";
-
- src = fetchFromGitHub {
- owner = "darkomarko42";
- repo = pname;
- rev = "481aae16034e0321bcabd14270639b8bd8b9aa73";
- hash = "sha256-Ze2nR+77qe0TfwcvXP9eheB7mXSSVdejk11GS0fx7LY=";
- };
-
- buildInputs = [
- gdk-pixbuf
- gtk_engines
- librsvg
- ];
-
- propagatedUserEnvPkgs = [
- gtk-engine-murrine
- ];
-
- dontBuild = true;
-
- installPhase = ''
- runHook preInstall
- mkdir -p $out/share/themes
- cp -a Marwaita* $out/share/themes
- runHook postInstall
- '';
-
- passthru.updateScript = gitUpdater { };
-
- meta = with lib; {
- description = "Ubuntu Style of Marwaita GTK theme";
- homepage = "https://www.pling.com/p/1352833/";
- license = licenses.gpl3Only;
- platforms = platforms.unix;
- maintainers = [ maintainers.romildo ];
- };
-}