about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-08-20 16:25:26 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-01-24 20:54:14 +0000
commit4c59f07017d7b050f65c89d84254589f95c15623 (patch)
treeda1bbe6709179ea91f4348869a10f786113d8812 /pkgs/misc
parent68d09065efd8058b1a3f440eae154e3095e6dc26 (diff)
downloadnixlib-4c59f07017d7b050f65c89d84254589f95c15623.tar
nixlib-4c59f07017d7b050f65c89d84254589f95c15623.tar.gz
nixlib-4c59f07017d7b050f65c89d84254589f95c15623.tar.bz2
nixlib-4c59f07017d7b050f65c89d84254589f95c15623.tar.lz
nixlib-4c59f07017d7b050f65c89d84254589f95c15623.tar.xz
nixlib-4c59f07017d7b050f65c89d84254589f95c15623.tar.zst
nixlib-4c59f07017d7b050f65c89d84254589f95c15623.zip
elementary-gtk-theme: drop
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/themes/elementary/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/misc/themes/elementary/default.nix b/pkgs/misc/themes/elementary/default.nix
deleted file mode 100644
index 0d02b32c8ffe..000000000000
--- a/pkgs/misc/themes/elementary/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, fetchFromGitHub }:
-
-stdenv.mkDerivation rec {
-  name = "elementary-gtk-theme-${version}";
-  version = "5.1.1";
-
-  src = fetchFromGitHub {
-    owner = "elementary";
-    repo = "stylesheet";
-    rev = version;
-    sha256 = "1749byc2lbxmprladn9n7k6jh79r8ffgayjn689gmqsrm6czsmh2";
-  };
-
-  dontBuild = true;
-
-  installPhase = ''
-    mkdir -p $out/share/themes/elementary
-    cp -r gtk-* plank $out/share/themes/elementary
-  '';
-
-  meta = with stdenv.lib; {
-    description = "GTK theme designed to be smooth, attractive, fast, and usable";
-    homepage = https://github.com/elementary/stylesheet;
-    license = licenses.gpl3;
-    platforms = platforms.unix;
-    maintainers = with maintainers; [ davidak ];
-  };
-}