depot/third_party/nixpkgs/pkgs/by-name/mi/mint-l-theme/package.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

46 lines
804 B
Nix

{ stdenvNoCC
, lib
, fetchFromGitHub
, python3
, sassc
, sass
}:
stdenvNoCC.mkDerivation rec {
pname = "mint-l-theme";
version = "1.9.8";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
hash = "sha256-Jql4NJ8jugy0wi5yT+/Mr5fwxLog37w0VvHhxyMvMlk=";
};
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;
};
}