xapp-symbolic-icons: init at 1.0.1
https://github.com/xapp-project/xapp-symbolic-icons/commits/1.0.1
This commit is contained in:
@@ -211,6 +211,7 @@ in
|
||||
mint-x-icons
|
||||
mint-y-icons
|
||||
xapp # provides some xapp-* icons
|
||||
xapp-symbolic-icons
|
||||
] config.environment.cinnamon.excludePackages
|
||||
);
|
||||
|
||||
|
||||
37
pkgs/by-name/xa/xapp-symbolic-icons/package.nix
Normal file
37
pkgs/by-name/xa/xapp-symbolic-icons/package.nix
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
stdenvNoCC,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
meson,
|
||||
ninja,
|
||||
python3,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "xapp-symbolic-icons";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xapp-project";
|
||||
repo = "xapp-symbolic-icons";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-TOSbEcxYXuUtc0RC1Seva8uqF5qveVRq2dpG0BZmCK0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
python3 # xsi-replace-adwaita-symbolic
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/xapp-project/xapp-symbolic-icons";
|
||||
description = "Set of symbolic icons for GTK applications and projects";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
teams = [ lib.teams.cinnamon ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user