chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / mi / mint-cursor-themes / package.nix
blobe0402b2f721b7865ab2f64057358bb8139ced443
1 { stdenvNoCC
2 , fetchFromGitHub
3 , lib
4 }:
6 stdenvNoCC.mkDerivation rec {
7   pname = "mint-cursor-themes";
8   version = "1.0.2";
10   src = fetchFromGitHub {
11     owner = "linuxmint";
12     repo = pname;
13     # They don't really do tags, this is just a named commit.
14     rev = "d2c1428b499a347c291dafb13c89699fdbdd4be7";
15     hash = "sha256-i2Wf+OKwal9G5hkcAdmGSgX6txu1AHajqqPJdhpJoA0=";
16   };
18   installPhase = ''
19     runHook preInstall
21     mkdir -p $out
22     mv usr/share $out
24     runHook postInstall
25   '';
27   meta = with lib; {
28     homepage = "https://github.com/linuxmint/mint-cursor-themes/";
29     description = "Linux Mint cursor themes";
30     license = licenses.gpl3Plus;
31     maintainers = teams.cinnamon.members;
32     platforms = platforms.linux;
33   };