3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/cinnamon/mint-themes/default.nix

43 lines
845 B
Nix
Raw Normal View History

2020-03-22 07:11:01 +00:00
{ fetchFromGitHub
, lib, stdenv
2020-03-22 07:11:01 +00:00
, python3
, sassc
, sass
}:
stdenv.mkDerivation rec {
pname = "mint-themes";
2021-11-24 09:15:36 +00:00
version = "1.8.8";
2020-03-22 07:11:01 +00:00
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
2021-11-24 09:15:36 +00:00
# they don't exactly do tags, it's just a named commit
rev = "a833fba6917043bf410dee4364c9a36af1ce4c83";
hash = "sha256-8abjjD0XoApvqB8SNlWsqIEp7ozgiERGS0kWglw2DWA=";
2020-03-22 07:11:01 +00:00
};
nativeBuildInputs = [
python3
sassc
sass
];
preBuild = ''
patchShebangs .
'';
installPhase = ''
mkdir -p $out
mv usr/share $out
'';
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;
maintainers = teams.cinnamon.members;
2020-03-22 07:11:01 +00:00
};
}