summary refs log tree commit diff
path: root/pkgs/applications/misc/camlistore/default.nix
blob: 9adac335c0c7f901b398bed4c2aa6a46e46073ea (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.7";
  name = "camlistore-${version}";

  src = fetchurl {
    url = "https://github.com/bradfitz/camlistore/archive/0.7.tar.gz";
    sha256 = "0lc35x2b9llrnma0m5czivly0c3l4lh3ldw9hwn83lkh8n0bzn11";
  };

  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;
  };
}