Merge pull request #182215 from foo-dogsquared/emulsion-palette

emulsion-palette: init at 3.3.9
This commit is contained in:
Ivv 2022-08-04 18:23:29 +02:00 committed by GitHub
commit b3a7889c73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, vala
, wrapGAppsHook4
, libadwaita
, json-glib
, libgee
, pkg-config
, gtk3
, desktop-file-utils
}:
stdenv.mkDerivation rec {
pname = "emulsion-palette";
version = "3.3.9";
src = fetchFromGitHub {
owner = "lainsce";
repo = "emulsion";
rev = version;
sha256 = "sha256-xG7yZKbbNao/pzFhdTMof/lw9K12NKZi47YRaEd65ok=";
};
nativeBuildInputs = [ meson ninja pkg-config vala wrapGAppsHook4 ];
buildInputs = [
desktop-file-utils
gtk3 # We're only using it for the gtk-update-icon-cache utility.
json-glib
libadwaita
libgee
];
postFixup = ''
ln -s $out/bin/io.github.lainsce.Emulsion $out/bin/emulsion-palette
'';
meta = with lib; {
description = "Store your color palettes in an easy way";
homepage = "https://github.com/lainsce/emulsion";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ foo-dogsquared ];
};
}

View file

@ -5916,6 +5916,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices Foundation OpenGL;
};
emulsion-palette = callPackage ../applications/graphics/emulsion-palette { };
emv = callPackage ../tools/misc/emv { };
enblend-enfuse = callPackage ../tools/graphics/enblend-enfuse {