2018-03-07 11:43:16 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, fuse, curl, glib-networking
|
|
|
|
, asciidoc, libxml2, docbook_xsl, docbook_xml_dtd_45, libxslt, wrapGAppsHook }:
|
2013-05-24 22:43:26 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-30 14:07:44 +00:00
|
|
|
name = "megatools-${version}";
|
2018-08-07 22:10:38 +01:00
|
|
|
version = "1.10.2";
|
2013-05-24 22:43:26 +01:00
|
|
|
|
2018-03-07 11:43:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "megous";
|
|
|
|
repo = "megatools";
|
2018-08-07 22:10:38 +01:00
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "001hw8j36ld03wwaphq3xdaazf2dpl36h84k8xmk524x8vlia8lk";
|
2013-05-24 22:43:26 +01:00
|
|
|
};
|
|
|
|
|
2018-03-07 11:43:16 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook pkgconfig wrapGAppsHook asciidoc libxml2
|
|
|
|
docbook_xsl docbook_xml_dtd_45 libxslt
|
|
|
|
];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ glib glib-networking fuse curl ];
|
2013-05-24 22:43:26 +01:00
|
|
|
|
2018-03-07 11:43:16 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-11-30 14:07:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-24 22:43:26 +01:00
|
|
|
description = "Command line client for Mega.co.nz";
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://megatools.megous.com/;
|
2014-11-30 14:07:44 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.viric maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
2013-05-24 22:43:26 +01:00
|
|
|
};
|
|
|
|
}
|