about summary refs log tree commit diff
path: root/pkgs/applications/misc/tootle
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2018-08-21 15:49:21 -0500
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-21 22:49:21 +0200
commit60970294550aa78517ae8b19b4f99c0ccf170f4a (patch)
tree002ce705fafae8ba8ce78ffb79016b7442baf11b /pkgs/applications/misc/tootle
parentf8306941b7e89239837dd6d5c786cf3da26d06dc (diff)
downloadnixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.tar
nixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.tar.gz
nixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.tar.bz2
nixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.tar.lz
nixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.tar.xz
nixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.tar.zst
nixlib-60970294550aa78517ae8b19b4f99c0ccf170f4a.zip
tootle: init 0.1.5 (#45431)
Diffstat (limited to 'pkgs/applications/misc/tootle')
-rw-r--r--pkgs/applications/misc/tootle/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/misc/tootle/default.nix b/pkgs/applications/misc/tootle/default.nix
new file mode 100644
index 000000000000..b2aab54c1047
--- /dev/null
+++ b/pkgs/applications/misc/tootle/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub
+, meson, ninja, pkgconfig
+, gnome3, vala, gobjectIntrospection, wrapGAppsHook
+, gtk3, granite
+, json-glib, glib, glib-networking
+}:
+
+let
+  pname = "tootle";
+  version = "0.1.5";
+in stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+
+  src = fetchFromGitHub {
+    owner = "bleakgrey";
+    repo = pname;
+    rev = version;
+    sha256 = "022h1rh1jk3m1f9al0s1rylmnqnkydyc81idfc8jf1g0frnvn5i6";
+  };
+
+  nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection wrapGAppsHook ];
+  buildInputs = [
+    gtk3 granite json-glib glib glib-networking
+    gnome3.libgee gnome3.libsoup gnome3.gsettings-desktop-schemas
+  ];
+
+  postPatch = ''
+    chmod +x ./meson/post_install.py
+    patchShebangs ./meson/post_install.py
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Simple Mastodon client designed for elementary OS";
+    homepage    = https://github.com/bleakgrey/tootle;
+    license     = licenses.gpl3;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}