summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-09 10:05:29 -0400
committerGitHub <noreply@github.com>2019-08-09 10:05:29 -0400
commit67b475850296d061d15d4c9531dafa5939d388d7 (patch)
tree2ae89a41b1b4cfd5c9a087e2bbb83560444d7e64 /pkgs/applications/graphics
parentd8d934bfa02ec22947e76d8ea2da47c763d6e910 (diff)
parentc5a6c386832969b4be0083995db832a4151ba09e (diff)
downloadnixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.tar
nixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.tar.gz
nixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.tar.bz2
nixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.tar.lz
nixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.tar.xz
nixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.tar.zst
nixpkgs-67b475850296d061d15d4c9531dafa5939d388d7.zip
Merge pull request #66283 from worldofpeace/ideogram
 ideogram: init at 1.2.2
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/ideogram/default.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/ideogram/default.nix b/pkgs/applications/graphics/ideogram/default.nix
new file mode 100644
index 00000000000..1511901ab91
--- /dev/null
+++ b/pkgs/applications/graphics/ideogram/default.nix
@@ -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;
+  };
+
+}