mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
52 lines
888 B
Nix
52 lines
888 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, asciidoc
|
|
, docbook_xml_dtd_45
|
|
, docbook2x
|
|
, libxml2
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, curl
|
|
, glib
|
|
, fuse
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "megatools";
|
|
version = "1.11.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://megous.com/git/megatools";
|
|
rev = version;
|
|
sha256 = "sha256-Q9hMJBQBenufubbmeAw8Q8w+Oo+UcZLWathKNDwTv3s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
docbook_xml_dtd_45
|
|
docbook2x
|
|
libxml2
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
glib
|
|
] ++ lib.optionals stdenv.isLinux [ fuse ];
|
|
|
|
enableParallelBuilding = true;
|
|
strictDeps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Command line client for Mega.co.nz";
|
|
homepage = "https://megatools.megous.com/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ viric AndersonTorres ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|