base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / vo / volantes-cursors / package.nix
blobd76a0eda4cf09c35b1a8204badcdff1cc39193b6
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , inkscape
5 , xcursorgen
6 }:
7 stdenv.mkDerivation {
8   pname = "volantes-cursors";
9   version = "2022-08-27";
11   src = fetchFromGitHub {
12     owner = "varlesh";
13     repo = "volantes-cursors";
14     rev = "b13a4bbf6bd1d7e85fadf7f2ecc44acc198f8d01";
15     hash = "sha256-vJe1S+YHrUBwJSwt2+InTu5ho2FOtz7FjDxu0BIA1Js=";
16   };
18   strictDeps = true;
19   nativeBuildInputs = [ inkscape xcursorgen ];
21   makeTargets = [ "build" ];
23   makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
25   meta = with lib; {
26     homepage = "https://www.pling.com/p/1356095/";
27     description = "Classic cursor theme with a flying style";
28     license = licenses.gpl2;
29     maintainers = with maintainers; [ jordanisaacs ];
30     platforms = platforms.unix;
31     broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; # build timeout
32   };