summaryrefslogtreecommitdiffstats
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorGetPsyched <priyanshu@getpsyched.dev>2024-01-23 18:31:45 +0530
committerGetPsyched <priyanshu@getpsyched.dev>2024-01-23 18:31:45 +0530
commitac50329e42a7fa86d410b1c18fecb11b99ea42ee (patch)
tree9b235946d94486b7753d5957e1eb72c46eac66d6 /pkgs/data/icons
parent192e7f9887ff18c592b1b5eb8faf1b5991ecbff0 (diff)
banana-cursor: move to the new by-name convention
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/banana-cursor/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/data/icons/banana-cursor/default.nix b/pkgs/data/icons/banana-cursor/default.nix
deleted file mode 100644
index b89213c6d6fb..000000000000
--- a/pkgs/data/icons/banana-cursor/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- lib,
- stdenvNoCC,
- fetchFromGitHub,
-}:
-stdenvNoCC.mkDerivation rec {
- pname = "banana-cursor";
- version = "1.0.0";
-
- src = fetchFromGitHub {
- owner = "ful1e5";
- repo = "banana-cursor";
- rev = "v${version}";
- sha256 = "sha256-PI7381xf/GctQTnfcE0W3M3z2kqbX4VexMf17C61hT8=";
- };
-
- dontBuild = true;
-
- installPhase = ''
- mkdir -p $out/share/icons
- mv themes/Banana $out/share/icons
- '';
-
- meta = with lib; {
- homepage = "https://github.com/ful1e5/banana-cursor";
- description = "The banana cursor theme";
- license = licenses.gpl3;
- platforms = platforms.linux;
- maintainers = with maintainers; [ yrd ];
- };
-}