mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
simp1e-cursors: init at 20221103.2
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
parent
b2444828a1
commit
cff76b9e7c
42
pkgs/data/icons/simp1e-cursors/default.nix
Normal file
42
pkgs/data/icons/simp1e-cursors/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib, stdenvNoCC, fetchFromGitLab, python3, librsvg, xcursorgen }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "simp1e-cursors";
|
||||
version = "20221103.2";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cursors";
|
||||
repo = "simp1e";
|
||||
rev = version;
|
||||
sha256 = "sha256-3DCF6TwxWwYK5pF2Ykr3OwF76H7J03vLNZch/XoZZZk=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
(python3.withPackages (ps: with ps; [ pillow ]))
|
||||
librsvg
|
||||
xcursorgen
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
patchShebangs ./build.sh ./cursor-generator
|
||||
HOME=$TMP ./build.sh
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -dm 755 $out/share/icons
|
||||
cp -r built_themes/* $out/share/icons/
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An aesthetic cursor theme for Linux desktops";
|
||||
homepage = "https://gitlab.com/cursors/simp1e";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ natto1784 ];
|
||||
};
|
||||
}
|
|
@ -26865,6 +26865,8 @@ with pkgs;
|
|||
|
||||
sierra-breeze-enhanced = libsForQt5.callPackage ../data/themes/kwin-decorations/sierra-breeze-enhanced { };
|
||||
|
||||
simp1e-cursors = callPackage ../data/icons/simp1e-cursors { };
|
||||
|
||||
sjasmplus = callPackage ../development/compilers/sjasmplus { };
|
||||
|
||||
skeu = callPackage ../data/themes/skeu { };
|
||||
|
|
Loading…
Reference in a new issue