summary refs log tree commit diff
path: root/pkgs/tools/filesystems/securefs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-05-12 22:46:23 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-05-14 16:01:33 +0200
commit537f0fb297f4410c438db656fe16bd1f6da234f6 (patch)
tree0114ded8df40ae76f141ee389dc0c349d53f0ed8 /pkgs/tools/filesystems/securefs
parentdf0e0adb1184ac0ce7f1cacc7b95c33b92b8ec6a (diff)
downloadnixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.tar
nixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.tar.gz
nixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.tar.bz2
nixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.tar.lz
nixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.tar.xz
nixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.tar.zst
nixpkgs-537f0fb297f4410c438db656fe16bd1f6da234f6.zip
securefs: 0.3.1 -> 0.3.2
Diffstat (limited to 'pkgs/tools/filesystems/securefs')
-rw-r--r--pkgs/tools/filesystems/securefs/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/tools/filesystems/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix
index 8e483853672..0cd1d818f8c 100644
--- a/pkgs/tools/filesystems/securefs/default.nix
+++ b/pkgs/tools/filesystems/securefs/default.nix
@@ -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";