securefs: 0.3.1 -> 0.3.2

This commit is contained in:
Tobias Geerinckx-Rice 2016-05-12 22:46:23 +02:00
parent df0e0adb11
commit 537f0fb297
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99

View File

@ -1,27 +1,23 @@
{ stdenv, fetchFromGitHub
, cmake
, fuse }:
stdenv.mkDerivation rec {
name = "securefs-${version}";
version = "0.3.1";
version = "0.3.2";
src = fetchFromGitHub {
sha256 = "1n9kgrvc600lfclrk8cj2zy8md1brqhs8kvzdwfxgxavdh0wakkc";
sha256 = "1drksvwfgfpgcn2mzb65ljqlg2kgn6nald9fnz60hliw8f1wiqvh";
rev = version;
repo = "securefs";
owner = "netheril96";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ fuse ];
enableParallelBuilding = true;
doCheck = false; # tests require the fuse module to be loaded
installPhase = ''
install -D -m0755 {.,$out/bin}/securefs
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Transparent encryption filesystem";