summary refs log tree commit diff
path: root/pkgs/applications/misc/camlistore/default.nix
blob: a39a46222f1b4362b9d6b611a3797b7f0745a57c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, lib, go, fetchurl }:

stdenv.mkDerivation rec {
  version = "0.8";
  name = "camlistore-${version}";

  src = fetchurl {
    url = "https://github.com/bradfitz/camlistore/archive/${version}.tar.gz";
    sha256 = "03y5zs4i9lx93apqqqfgmbxamk06z3w1q763qp0lvb15mq45gdv1";
  };

  buildInputs = [ go ];

  buildPhase = ''
    go run make.go
    rm bin/README
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp bin/* $out/bin
  '';

  meta = with stdenv.lib; {
    description = "A way of storing, syncing, sharing, modelling and backing up content";
    homepage = https://camlistore.org;
    license = licenses.asl20;
    maintainers = with maintainers; [ cstrahan ];
    platforms = platforms.unix;
  };
}