mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, sassc
|
|
, meson
|
|
, ninja
|
|
, glib
|
|
, gnome-shell
|
|
, gnome-themes-extra
|
|
, gtk-engine-murrine
|
|
, inkscape
|
|
, cinnamon-common
|
|
, makeFontsConf
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "arc-theme";
|
|
version = "20221218";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jnsh";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-7VmqsUCeG5GwmrVdt9BJj0eZ/1v+no/05KwGFb7E9ns=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
sassc
|
|
inkscape
|
|
glib # for glib-compile-resources
|
|
python3
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [
|
|
gnome-themes-extra
|
|
gtk-engine-murrine
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs meson/install-file.py
|
|
'';
|
|
|
|
preBuild = ''
|
|
# Shut up inkscape's warnings about creating profile directory
|
|
export HOME="$TMPDIR"
|
|
'';
|
|
|
|
# Fontconfig error: Cannot load default config file: No such file: (null)
|
|
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
|
|
|
|
mesonFlags = [
|
|
# "-Dthemes=cinnamon,gnome-shell,gtk2,gtk3,plank,xfwm,metacity"
|
|
# "-Dvariants=light,darker,dark,lighter"
|
|
"-Dcinnamon_version=${cinnamon-common.version}"
|
|
"-Dgnome_shell_version=${gnome-shell.version}"
|
|
# You will need to patch gdm to make use of this.
|
|
"-Dgnome_shell_gresource=true"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
|
|
homepage = "https://github.com/jnsh/arc-theme";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ simonvandel romildo ];
|
|
};
|
|
}
|