summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdson Cicilioti <eu@adsonagencia.com>2021-12-07 21:40:15 -0300
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-12-08 02:39:07 +0000
commit84d475bb0b5b9a7b7b374e7c69a8736935eccbfe (patch)
tree33b5683214f137000f48f1c656b0802121a31460
parentbibata-extra-cursors: 0.3 -> 1.0.1 (diff)
downloadnixpkgs-84d475bb0b5b9a7b7b374e7c69a8736935eccbfe.tar.gz
bibata-cursors-translucent: unstable-2019-09-13 -> 1.1.1
(cherry picked from commit 15e4cefbea5ead252b4b0145e2b8751a75aa37a5)
-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 d1e2814a8aa3..74d7c4d7c3f9 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 ];
};
}