571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1004 B
Nix
43 lines
1004 B
Nix
{ lib, stdenvNoCC, fetchFromGitLab, python3, librsvg, xcursorgen }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "simp1e-cursors";
|
|
version = "20221103.2";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "cursors";
|
|
repo = "simp1e";
|
|
rev = version;
|
|
hash = "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 = "Aesthetic cursor theme for Linux desktops";
|
|
homepage = "https://gitlab.com/cursors/simp1e";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ natto1784 ];
|
|
};
|
|
}
|