toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / qu / quintom-cursor-theme / package.nix
blob037cbc7498885542e84cb373b0c13282188704d7
2   stdenvNoCC,
3   fetchFromGitLab,
4   lib,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "quintom-cursor-theme";
9   version = "unstable-2019-10-24";
11   src = fetchFromGitLab {
12     owner = "Burning_Cube";
13     repo = "quintom-cursor-theme";
14     rev = "d23e57333e816033cf20481bdb47bb1245ed5d4d";
15     hash = "sha256-Sec2DSnWYal6wzYzP9W+DDuTKHsFHWdRYyMzliMU5bU=A";
16   };
18   installPhase = ''
19     mkdir -p $out/share/icons
20     for theme in "Quintom_Ink" "Quintom_Snow"; do
21       cp -r "$theme Cursors/$theme" $out/share/icons/
22     done
23   '';
25   meta = with lib; {
26     description = "Cursor theme designed to look decent";
27     homepage = "https://gitlab.com/Burning_Cube/quintom-cursor-theme";
28     platforms = platforms.unix;
29     license = with licenses; [
30       cc-by-sa-40
31       gpl3Only
32     ];
33     maintainers = with maintainers; [ frogamic ];
34   };