azure-storage-azcopy: 10.27.1 -> 10.28.0 (#377459)
[NixPkgs.git] / pkgs / by-name / vo / volantes-cursors / package.nix
blob026d4bf3ae935b702cafcb93675bf62f251a7d46
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   inkscape,
6   xcursorgen,
7 }:
8 stdenv.mkDerivation {
9   pname = "volantes-cursors";
10   version = "2022-08-27";
12   src = fetchFromGitHub {
13     owner = "varlesh";
14     repo = "volantes-cursors";
15     rev = "b13a4bbf6bd1d7e85fadf7f2ecc44acc198f8d01";
16     hash = "sha256-vJe1S+YHrUBwJSwt2+InTu5ho2FOtz7FjDxu0BIA1Js=";
17   };
19   strictDeps = true;
20   nativeBuildInputs = [
21     inkscape
22     xcursorgen
23   ];
25   makeTargets = [ "build" ];
27   makeFlags = [
28     "DESTDIR=$(out)"
29     "PREFIX="
30   ];
32   meta = with lib; {
33     homepage = "https://www.pling.com/p/1356095/";
34     description = "Classic cursor theme with a flying style";
35     license = licenses.gpl2;
36     maintainers = with maintainers; [ jordanisaacs ];
37     platforms = platforms.unix;
38     broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; # build timeout
39   };