nixpkgs-suyu/pkgs/tools/networking/megatools/default.nix

24 lines
717 B
Nix
Raw Normal View History

2017-05-11 14:36:17 +02:00
{ stdenv, fetchurl, pkgconfig, glib, fuse, curl, glib_networking
, asciidoc, wrapGAppsHook }:
2013-05-24 23:43:26 +02:00
stdenv.mkDerivation rec {
2014-11-30 15:07:44 +01:00
name = "megatools-${version}";
version = "1.9.98";
2013-05-24 23:43:26 +02:00
src = fetchurl {
url = "http://megatools.megous.com/builds/${name}.tar.gz";
sha256 = "0vx1farp0dpg4zwvxdbfdnzjk9qx3sn109p1r1zl3g3xsaj221cv";
2013-05-24 23:43:26 +02:00
};
2017-05-11 14:36:17 +02:00
nativeBuildInputs = [ pkgconfig wrapGAppsHook asciidoc ];
buildInputs = [ glib glib_networking fuse curl ];
2013-05-24 23:43:26 +02:00
2014-11-30 15:07:44 +01:00
meta = with stdenv.lib; {
2013-05-24 23:43:26 +02:00
description = "Command line client for Mega.co.nz";
homepage = http://megatools.megous.com/;
2014-11-30 15:07:44 +01:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.viric maintainers.AndersonTorres ];
platforms = platforms.linux;
2013-05-24 23:43:26 +02:00
};
}