2020-03-22 07:11:01 +00:00
|
|
|
{ fetchFromGitHub
|
2021-11-29 16:34:50 +00:00
|
|
|
, lib
|
2022-11-22 03:04:46 +00:00
|
|
|
, stdenvNoCC
|
2020-03-22 07:11:01 +00:00
|
|
|
, python3
|
|
|
|
, sassc
|
|
|
|
, sass
|
|
|
|
}:
|
|
|
|
|
2022-11-22 03:04:46 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2020-03-22 07:11:01 +00:00
|
|
|
pname = "mint-themes";
|
2023-06-29 15:45:21 +00:00
|
|
|
version = "2.1.4";
|
2020-03-22 07:11:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxmint";
|
|
|
|
repo = pname;
|
2022-11-22 03:04:46 +00:00
|
|
|
rev = version;
|
2023-06-29 15:45:21 +00:00
|
|
|
hash = "sha256-Tr9MtEsd5+8YGsJvBF+i39dBL6/ufC3UVhgi8pP04Zs=";
|
2020-03-22 07:11:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
python3
|
|
|
|
sassc
|
|
|
|
sass
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2022-08-10 06:01:00 +00:00
|
|
|
runHook preInstall
|
2020-03-22 07:11:01 +00:00
|
|
|
mkdir -p $out
|
|
|
|
mv usr/share $out
|
2022-08-10 06:01:00 +00:00
|
|
|
runHook postInstall
|
2020-03-22 07:11:01 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-22 07:11:01 +00:00
|
|
|
homepage = "https://github.com/linuxmint/mint-themes";
|
|
|
|
description = "Mint-X and Mint-Y themes for the cinnamon desktop";
|
|
|
|
license = licenses.gpl3; # from debian/copyright
|
|
|
|
platforms = platforms.linux;
|
2020-09-05 22:40:47 +00:00
|
|
|
maintainers = teams.cinnamon.members;
|
2020-03-22 07:11:01 +00:00
|
|
|
};
|
|
|
|
}
|