chezmoi: 2.56.0 -> 2.57.0 (#372077)
[NixPkgs.git] / pkgs / by-name / me / megatools / package.nix
blob0f303363ca2f9f78ff66916c8d85ee46297cec2d
2   lib,
3   stdenv,
4   fetchgit,
5   asciidoc,
6   docbook_xml_dtd_45,
7   docbook2x,
8   libxml2,
9   meson,
10   ninja,
11   pkg-config,
12   curl,
13   glib,
14   fuse,
17 stdenv.mkDerivation rec {
18   pname = "megatools";
19   version = "1.11.1";
21   src = fetchgit {
22     url = "https://megous.com/git/megatools";
23     rev = version;
24     sha256 = "sha256-AdvQqaRTsKTqdfNfFiWtA9mIPVGuui+Ru9TUARVG0+Q=";
25   };
27   nativeBuildInputs = [
28     asciidoc
29     docbook_xml_dtd_45
30     docbook2x
31     libxml2
32     meson
33     ninja
34     pkg-config
35   ];
37   buildInputs = [
38     curl
39     glib
40   ] ++ lib.optionals stdenv.hostPlatform.isLinux [ fuse ];
42   enableParallelBuilding = true;
43   strictDeps = true;
45   meta = with lib; {
46     description = "Command line client for Mega.co.nz";
47     homepage = "https://megatools.megous.com/";
48     license = licenses.gpl2Plus;
49     maintainers = with maintainers; [ viric ];
50     platforms = platforms.unix;
51   };