portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / by-name / mi / mint-themes / package.nix
blob3336476db59562d86afcfeeeec03991022ed6c31
1 { fetchFromGitHub
2 , lib
3 , stdenvNoCC
4 , python3
5 , python3Packages
6 }:
8 stdenvNoCC.mkDerivation rec {
9   pname = "mint-themes";
10   version = "2.2.0";
12   src = fetchFromGitHub {
13     owner = "linuxmint";
14     repo = pname;
15     rev = version;
16     hash = "sha256-aB44YMaf4cCFv26zn9ZPeJA7lTdGE5ePI1TkKkG+Ekw=";
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   };