evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / mi / mint-l-theme / package.nix
blob214ebb999785f2949ddfcad2d0bdc6171d657608
1 { stdenvNoCC
2 , lib
3 , fetchFromGitHub
4 , python3
5 , sassc
6 , sass
7 }:
9 stdenvNoCC.mkDerivation rec {
10   pname = "mint-l-theme";
11   version = "1.9.8";
13   src = fetchFromGitHub {
14     owner = "linuxmint";
15     repo = pname;
16     rev = version;
17     hash = "sha256-Jql4NJ8jugy0wi5yT+/Mr5fwxLog37w0VvHhxyMvMlk=";
18   };
20   nativeBuildInputs = [
21     python3
22     sassc
23     sass
24   ];
26   postPatch = ''
27     patchShebangs .
28   '';
30   installPhase = ''
31     runHook preInstall
33     mkdir -p $out
34     mv usr/share $out
36     runHook postInstall
37   '';
39   meta = with lib; {
40     homepage = "https://github.com/linuxmint/mint-l-theme";
41     description = "Mint-L theme for the Cinnamon desktop";
42     license = licenses.gpl3Plus; # from debian/copyright
43     platforms = platforms.linux;
44     maintainers = teams.cinnamon.members;
45   };