evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / bo / boxfs / package.nix
blobb12966541c997155bfb41bb9ab1e8001ed26feed
1 { lib, stdenv, fetchFromGitHub, curl, fuse, libxml2, pkg-config }:
3 let
4   srcs = {
5     boxfs2 = fetchFromGitHub {
6       sha256 = "10af1l3sjnh25shmq5gdnpyqk4vrq7i1zklv4csf1n2nrahln8j8";
7       rev = "d7018b0546d2dae956ae3da3fb95d2f63fa6d3ff";
8       repo = "boxfs2";
9       owner = "drotiro";
10     };
11     libapp = fetchFromGitHub {
12       sha256 = "1p2sbxiranan2n2xsfjkp3c6r2vcs57ds6qvjv4crs1yhxr7cp00";
13       rev = "febebe2bc0fb88d57bdf4eb4a2a54c9eeda3f3d8";
14       repo = "libapp";
15       owner = "drotiro";
16     };
17     libjson = fetchFromGitHub {
18       sha256 = "1vhss3gq44nl61fbnh1l3qzwvz623gwhfgykf1lf1p31rjr7273w";
19       rev = "75a7f50fca2c667bc5f32cdd6dd98f2b673f6657";
20       repo = "libjson";
21       owner = "vincenthz";
22     };
23   };
24 in stdenv.mkDerivation {
25   pname = "boxfs";
26   version = "2-20150109";
28   src = srcs.boxfs2;
30   prePatch = with srcs; ''
31     substituteInPlace Makefile --replace "git pull" "true"
32     cp -a --no-preserve=mode ${libapp} libapp
33     cp -a --no-preserve=mode ${libjson} libjson
34   '';
35   patches = [
36     ./work-around-API-borkage.patch
37     ./libapp-include-ctype.diff
38   ];
40   buildInputs = [ curl fuse libxml2 ];
41   nativeBuildInputs = [ pkg-config ];
43   buildFlags = [
44     "static"
45     "CC=${stdenv.cc.targetPrefix}cc"
46   ] ++ lib.optional stdenv.hostPlatform.isDarwin "CFLAGS=-D_BSD_SOURCE";
48   installPhase = ''
49     mkdir -p $out/bin
50     install boxfs boxfs-init $out/bin
51   '';
53   meta = with lib; {
54     description = "FUSE file system for box.com accounts";
55     longDescription = ''
56       Store files on box.com (an account is required). The first time you run
57       boxfs, you will need to complete the authentication (oauth2) process and
58       grant access to your box.com account. Just follow the instructions on
59       the terminal and in your browser. When you've done using your files,
60       unmount the file system with `fusermount -u mountpoint`.
61     '';
62     homepage = "https://github.com/drotiro/boxfs2";
63     license = licenses.gpl3;
64     platforms = platforms.unix;
65   };