nixpkgs/pkgs/applications/graphics/ideogram/default.nix

62 lines
1 KiB
Nix
Raw Normal View History

2019-08-04 11:42:17 +00:00
{ stdenv
, fetchFromGitHub
2019-08-07 16:22:55 +00:00
, fetchpatch
, vala
2019-08-04 11:42:17 +00:00
, pkgconfig
, python3
, glib
, gtk3
, meson
, ninja
, libgee
, pantheon
, desktop-file-utils
, xorg
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "ideogram";
2019-11-20 10:45:29 +00:00
version = "1.3.0";
2019-08-04 11:42:17 +00:00
src = fetchFromGitHub {
owner = "cassidyjames";
repo = pname;
rev = version;
2019-11-20 10:45:29 +00:00
sha256 = "0ghc7hk4b4r3a0x9r30rrgv3rarxyjr2hf9ig244xwvhh5rn3j10";
2019-08-04 11:42:17 +00:00
};
nativeBuildInputs = [
desktop-file-utils
meson
ninja
vala
2019-08-04 11:42:17 +00:00
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;
};
}