Merge pull request #213740 from foo-dogsquared/add-gnome-emblem

emblem: init at 1.1.0
This commit is contained in:
Nick Cao
2023-02-03 20:06:39 +08:00
committed by GitHub
2 changed files with 66 additions and 0 deletions
@@ -0,0 +1,64 @@
{ lib
, stdenv
, fetchFromGitLab
, rustPlatform
, pkg-config
, meson
, ninja
, glib
, gobject-introspection
, libadwaita
, libxml2
, librsvg
, wrapGAppsHook4
, appstream-glib
, desktop-file-utils
}:
stdenv.mkDerivation rec {
pname = "emblem";
version = "1.1.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World/design";
repo = pname;
rev = version;
sha256 = "sha256-kNPV1SHkNTBXbMzDJGuDbaGz1WkBqMpVgZKjsh7ejmo=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-yhXxlUOe+mWVpAEB0yN9m5S5yfNRrHnx7XHLXbbf1hc=";
};
nativeBuildInputs = [
appstream-glib
glib
gobject-introspection
meson
ninja
pkg-config
wrapGAppsHook4
] ++ (with rustPlatform; [
cargoSetupHook
rust.cargo
rust.rustc
]);
buildInputs = [
desktop-file-utils
libadwaita
librsvg
libxml2
];
meta = with lib; {
description = "Generate project icons and avatars from a symbolic icon";
homepage = "https://gitlab.gnome.org/World/design/emblem";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ foo-dogsquared ];
};
}
+2
View File
@@ -6991,6 +6991,8 @@ with pkgs;
emborg = python3Packages.callPackage ../development/python-modules/emborg { };
emblem = callPackage ../applications/graphics/emblem { };
emem = callPackage ../applications/misc/emem { };
empty = callPackage ../tools/misc/empty { };