3
0
Fork 0
forked from mirrors/nixpkgs

cinnamon.mint-l-theme: init at 1.9.3

https://github.com/linuxmint/mint-l-theme/commits/1.9.3
This commit is contained in:
Bobby Rong 2023-05-05 22:33:03 +08:00
parent 32270f094e
commit acdf90cea8
No known key found for this signature in database
2 changed files with 47 additions and 0 deletions

View file

@ -39,6 +39,7 @@ lib.makeScope pkgs.newScope (self: with self; {
mint-artwork = callPackage ./mint-artwork { };
mint-cursor-themes = callPackage ./mint-cursor-themes { };
mint-l-icons = callPackage ./mint-l-icons { };
mint-l-theme = callPackage ./mint-l-theme { };
mint-themes = callPackage ./mint-themes { };
mint-x-icons = callPackage ./mint-x-icons { };
mint-y-icons = callPackage ./mint-y-icons { };

View file

@ -0,0 +1,46 @@
{ stdenvNoCC
, lib
, fetchFromGitHub
, python3
, sassc
, sass
}:
stdenvNoCC.mkDerivation rec {
pname = "mint-l-theme";
version = "1.9.3";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
hash = "sha256-x+elC1NWcd+x8dNewwKPZBdkxSzEbo7jsG8B9DcWdoA=";
};
nativeBuildInputs = [
python3
sassc
sass
];
postPatch = ''
patchShebangs .
'';
installPhase = ''
runHook preInstall
mkdir -p $out
mv usr/share $out
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/linuxmint/mint-l-theme";
description = "Mint-L theme for the Cinnamon desktop";
license = licenses.gpl3Plus; # from debian/copyright
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
};
}