summary refs log tree commit diff
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorAdson Cicilioti <eu@adsonagencia.com>2021-12-07 21:40:15 -0300
committerAdson Cicilioti <eu@adsonagencia.com>2021-12-07 21:40:15 -0300
commit15e4cefbea5ead252b4b0145e2b8751a75aa37a5 (patch)
treeb339890e7b0ca8dde7287b43d16ab193dd2e740d /pkgs/data/icons
parent408ecd60d43ad0985a65e7b0c3ec6d2e5d18ab1a (diff)
downloadnixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.tar
nixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.tar.gz
nixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.tar.bz2
nixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.tar.lz
nixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.tar.xz
nixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.tar.zst
nixpkgs-15e4cefbea5ead252b4b0145e2b8751a75aa37a5.zip
bibata-cursors-translucent: unstable-2019-09-13 -> 1.1.1
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/bibata-cursors/translucent.nix27
1 files changed, 6 insertions, 21 deletions
diff --git a/pkgs/data/icons/bibata-cursors/translucent.nix b/pkgs/data/icons/bibata-cursors/translucent.nix
index d1e2814a8aa..74d7c4d7c3f 100644
--- a/pkgs/data/icons/bibata-cursors/translucent.nix
+++ b/pkgs/data/icons/bibata-cursors/translucent.nix
@@ -1,31 +1,16 @@
-{ lib, stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen }:
+{ lib, stdenv, fetchFromGitHub }:
 
-stdenvNoCC.mkDerivation rec {
+stdenv.mkDerivation rec {
   pname = "bibata-cursors-translucent";
-  version = "unstable-2019-09-13";
+  version = "1.1.1";
 
   src = fetchFromGitHub {
     owner = "Silicasandwhich";
     repo = "Bibata_Cursor_Translucent";
-    rev = "2eed979d817148817ea6bca15c594809aa9c2cb9";
-    sha256 = "1s688v40xx9jbvfncb4kgfnnxkmknji7igqx7c4q1ly9s7imbd1f";
+    rev = "v${version}";
+    sha256 = "1ddnwqkxricnd731blckcxvksbgql8k4pfiz65591p81n5095k8y";
   };
 
-  postPatch = ''
-    patchShebangs .
-    substituteInPlace build.sh --replace "gksu " ""
-  '';
-
-  nativeBuildInputs  = [
-    gnome-themes-extra
-    inkscape
-    xcursorgen
-  ];
-
-  buildPhase = ''
-    HOME="$NIX_BUILD_ROOT" ./build.sh
-  '';
-
   installPhase = ''
     install -dm 0755 $out/share/icons
     cp -pr Bibata_* $out/share/icons/
@@ -36,6 +21,6 @@ stdenvNoCC.mkDerivation rec {
     homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
     license = licenses.gpl3;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ dtzWill ];
+    maintainers = with maintainers; [ dtzWill AdsonCicilioti ];
   };
 }