mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Adding megatools
This commit is contained in:
parent
482c63e502
commit
a403f55ccf
20
pkgs/tools/networking/megatools/default.nix
Normal file
20
pkgs/tools/networking/megatools/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, glib, curl, pkgconfig, fuse }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "megatools-1.9.91";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://megatools.megous.com/builds/${name}.tar.gz";
|
||||
sha256 = "0hb83wqsn6mggcmk871hl8cski5x0hxz9dhaka42115s4mdfbl1i";
|
||||
};
|
||||
|
||||
buildInputs = [ glib curl pkgconfig fuse ];
|
||||
|
||||
meta = {
|
||||
description = "Command line client for Mega.co.nz";
|
||||
homepage = http://megatools.megous.com/;
|
||||
license = "GPLv2+";
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -1171,6 +1171,8 @@ let
|
||||
|
||||
mdbtools_git = callPackage ../tools/misc/mdbtools/git.nix { };
|
||||
|
||||
megatools = callPackage ../tools/networking/megatools { };
|
||||
|
||||
minecraft = callPackage ../games/minecraft { };
|
||||
|
||||
minetest = callPackage ../games/minetest { };
|
||||
|
Loading…
Reference in New Issue
Block a user