nixpkgs/pkgs/tools/backup/ori/default.nix

30 lines
740 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, boost, pkg-config, scons, util-linux, fuse, libevent, openssl, zlib }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
version = "0.8.1";
pname = "ori";
src = fetchurl {
url = "https://bitbucket.org/orifs/ori/downloads/ori-0.8.1.tar.xz";
sha256 = "8ce1a3dfbb6d1538885e993616bdfe71be44711d48f7f6798ff6bc0a39b3deca";
};
buildInputs = [
boost pkg-config scons util-linux fuse libevent openssl zlib
];
buildPhase = ''
2014-05-15 21:00:18 +00:00
scons PREFIX=$out WITH_ORILOCAL=1 install
'';
dontInstall = true;
meta = with lib; {
description = "A secure distributed file system";
homepage = "http://ori.scs.stanford.edu/";
license = licenses.mit;
platforms = platforms.unix;
2018-04-11 09:36:35 +00:00
broken = true; # 2018-04-11
};
}