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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-08-04 13:42:17 +02:00
, fetchFromGitHub
, nix-update-script
2019-08-07 18:22:55 +02:00
, fetchpatch
, vala
, pkg-config
2019-08-04 13:42:17 +02:00
, python3
, glib
, gtk3
, meson
, ninja
, libgee
, pantheon
, desktop-file-utils
, xorg
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "ideogram";
version = "1.3.3";
2019-08-04 13:42:17 +02:00
src = fetchFromGitHub {
owner = "cassidyjames";
repo = pname;
rev = version;
sha256 = "1zkr7x022khn5g3sq2dkxzy1hiiz66vl81s3i5sb9qr88znh79p1";
2019-08-04 13:42:17 +02:00
};
nativeBuildInputs = [
desktop-file-utils
meson
ninja
vala
pkg-config
2019-08-04 13:42:17 +02:00
python3
wrapGAppsHook
];
buildInputs = [
glib
gtk3
libgee
pantheon.granite
xorg.libX11
xorg.libXtst
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
2019-12-23 00:19:30 +01:00
passthru = {
updateScript = nix-update-script {
2019-12-23 00:19:30 +01:00
attrPath = pname;
};
};
meta = with lib; {
2019-08-04 13:42:17 +02:00
description = "Insert emoji anywhere, even in non-native apps - designed for elementary OS";
homepage = "https://github.com/cassidyjames/ideogram";
2019-08-04 13:42:17 +02:00
license = licenses.gpl2Plus;
maintainers = teams.pantheon.members;
2019-08-04 13:42:17 +02:00
platforms = platforms.linux;
mainProgram = "com.github.cassidyjames.ideogram";
2019-08-04 13:42:17 +02:00
};
}