summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/ideogram
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-04 07:42:17 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-04 07:42:17 -0400
commit4ff6cc92b9fcc5c15ad3cf6142b4f5619fe6f827 (patch)
tree02a8621d0a78ac466e824da6294e4ac2de2b059a /pkgs/applications/graphics/ideogram
parentebf4126d8b137dd6ea08813bb61ee71ac4d79ba1 (diff)
ideogram: init at 1.2.2
Diffstat (limited to 'pkgs/applications/graphics/ideogram')
-rw-r--r--pkgs/applications/graphics/ideogram/default.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/ideogram/default.nix b/pkgs/applications/graphics/ideogram/default.nix
new file mode 100644
index 000000000000..c0f2669c5268
--- /dev/null
+++ b/pkgs/applications/graphics/ideogram/default.nix
@@ -0,0 +1,59 @@
+{ stdenv
+, fetchFromGitHub
+, 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
+ ];
+
+ 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;
+ };
+
+}