chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / mi / mint-themes / package.nix
blob13db58183cb565ac52f802d0c58f5202102a68cc
1 { fetchFromGitHub
2 , lib
3 , stdenvNoCC
4 , python3
5 , python3Packages
6 }:
8 stdenvNoCC.mkDerivation rec {
9   pname = "mint-themes";
10   version = "2.1.8";
12   src = fetchFromGitHub {
13     owner = "linuxmint";
14     repo = pname;
15     rev = version;
16     hash = "sha256-mkcIhZRaOUom1Rurz/IO646FSF50efLN6xfesPdyVHc=";
17   };
19   nativeBuildInputs = [
20     python3
21     python3Packages.libsass
22   ];
24   preBuild = ''
25     patchShebangs .
26   '';
28   installPhase = ''
29     runHook preInstall
30     mkdir -p $out
31     mv usr/share $out
32     runHook postInstall
33   '';
35   meta = with lib; {
36     homepage = "https://github.com/linuxmint/mint-themes";
37     description = "Mint-X and Mint-Y themes for the cinnamon desktop";
38     license = licenses.gpl3; # from debian/copyright
39     platforms = platforms.linux;
40     maintainers = teams.cinnamon.members;
41   };