Merge pull request #3067 from cstrahan/camlistore
add camlistore package
This commit is contained in:
commit
d3790c569f
31
pkgs/applications/misc/camlistore/default.nix
Normal file
31
pkgs/applications/misc/camlistore/default.nix
Normal file
@ -0,0 +1,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 = ''
|
||||||
|
ensureDir $out/bin
|
||||||
|
cp bin/* $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Camlistore is 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;
|
||||||
|
};
|
||||||
|
}
|
@ -8088,6 +8088,8 @@ let
|
|||||||
|
|
||||||
calibre = callPackage ../applications/misc/calibre { };
|
calibre = callPackage ../applications/misc/calibre { };
|
||||||
|
|
||||||
|
camlistore = callPackage ../applications/misc/camlistore { };
|
||||||
|
|
||||||
carrier = builderDefsPackage (import ../applications/networking/instant-messengers/carrier/2.5.0.nix) {
|
carrier = builderDefsPackage (import ../applications/networking/instant-messengers/carrier/2.5.0.nix) {
|
||||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss
|
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss
|
||||||
gtkspell aspell gettext ncurses avahi dbus dbus_glib python
|
gtkspell aspell gettext ncurses avahi dbus dbus_glib python
|
||||||
|
Loading…
x
Reference in New Issue
Block a user