2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-04-15 15:27:59 +00:00

megatools: fixing the network part

It requires some env vars to work
This commit is contained in:
Lluís Batlle i Rossell 2013-05-25 00:08:42 +02:00
parent a403f55ccf
commit 7e7b669b3e

View File

@ -1,4 +1,5 @@
{ stdenv, fetchurl, glib, curl, pkgconfig, fuse }:
{ stdenv, fetchurl, glib, curl, pkgconfig, fuse, glib_networking, makeWrapper
, gsettings_desktop_schemas }:
stdenv.mkDerivation rec {
name = "megatools-1.9.91";
@ -8,7 +9,16 @@ stdenv.mkDerivation rec {
sha256 = "0hb83wqsn6mggcmk871hl8cski5x0hxz9dhaka42115s4mdfbl1i";
};
buildInputs = [ glib curl pkgconfig fuse ];
buildInputs = [ glib curl pkgconfig fuse makeWrapper ];
postInstall = ''
for a in $out/bin/*; do
wrapProgram "$a" \
--prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \
--prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share"
done
'';
meta = {
description = "Command line client for Mega.co.nz";