Merge pull request #66283 from worldofpeace/ideogram
ideogram: init at 1.2.2
This commit is contained in:
commit
67b4758502
68
pkgs/applications/graphics/ideogram/default.nix
Normal file
68
pkgs/applications/graphics/ideogram/default.nix
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
, pkgconfig
|
||||||
|
, python3
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, libgee
|
||||||
|
, pantheon
|
||||||
|
, desktop-file-utils
|
||||||
|
, xorg
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ideogram";
|
||||||
|
version = "1.2.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cassidyjames";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1qakgg3y4n2vcnykk2004ndvwmjbk2yy0p4j30mlb7p14dxscif6";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
desktop-file-utils
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pantheon.vala
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
libgee
|
||||||
|
pantheon.granite
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXtst
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# See: https://github.com/cassidyjames/ideogram/issues/26
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/cassidyjames/ideogram/commit/65994ee11bd21f8316b057cec01afbf50639a708.patch";
|
||||||
|
sha256 = "12vrvvggpqq53dmhbm7gbbbigncn19m1fjln9wxaady21m0w776c";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x meson/post_install.py
|
||||||
|
patchShebangs meson/post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Insert emoji anywhere, even in non-native apps - designed for elementary OS";
|
||||||
|
homepage = https://github.com/cassidyjames/ideogram;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = pantheon.maintainers;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -21934,6 +21934,8 @@ in
|
|||||||
inherit (pythonPackages) rdflib;
|
inherit (pythonPackages) rdflib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ideogram = callPackage ../applications/graphics/ideogram { };
|
||||||
|
|
||||||
instead = callPackage ../games/instead {
|
instead = callPackage ../games/instead {
|
||||||
lua = lua5;
|
lua = lua5;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user