nixpkgs/pkgs/applications/misc/tootle/default.nix

72 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, nix-update-script
, fetchpatch
, vala
, meson
, ninja
, pkg-config
, python3
, libgee
, gsettings-desktop-schemas
, gnome
, pantheon
, wrapGAppsHook
, gtk3
, json-glib
, glib
, glib-networking
2021-02-04 22:58:16 +03:00
, libhandy
2018-08-21 23:49:21 +03:00
}:
stdenv.mkDerivation rec {
2018-08-21 23:49:21 +03:00
pname = "tootle";
2021-02-04 22:58:16 +03:00
version = "1.0";
2018-08-21 23:49:21 +03:00
src = fetchFromGitHub {
owner = "bleakgrey";
repo = pname;
rev = version;
2021-02-04 22:58:16 +03:00
sha256 = "NRM7GiJA8c5z9AvXpGXtMl4ZaYN2GauEIbjBmoY4pdo=";
2018-08-21 23:49:21 +03:00
};
2018-12-08 22:34:01 +03:00
nativeBuildInputs = [
meson
ninja
pkg-config
2018-12-08 22:34:01 +03:00
python3
vala
2018-12-08 22:34:01 +03:00
wrapGAppsHook
];
2018-08-21 23:49:21 +03:00
buildInputs = [
glib
glib-networking
gnome.libsoup
gsettings-desktop-schemas
gtk3
json-glib
libgee
pantheon.granite
2021-02-04 22:58:16 +03:00
libhandy
];
2018-08-21 23:49:21 +03:00
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
2018-08-21 23:49:21 +03:00
'';
2019-12-23 02:19:30 +03:00
passthru = {
updateScript = nix-update-script {
2019-12-23 02:19:30 +03:00
attrPath = pname;
};
};
meta = with lib; {
2018-08-21 23:49:21 +03:00
description = "Simple Mastodon client designed for elementary OS";
homepage = "https://github.com/bleakgrey/tootle";
license = licenses.gpl3;
2018-08-21 23:49:21 +03:00
maintainers = with maintainers; [ dtzWill ];
};
}