summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fscrypt
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2017-09-24 02:02:18 +0200
committerMichael Weiss <dev.primeos@gmail.com>2017-09-24 02:38:45 +0200
commit2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2 (patch)
treea58909db3b5ce9c28216ba90567a12402fb2b51f /pkgs/os-specific/linux/fscrypt
parentf3b9ac73e2beb9729ce9aad4dd0e25c56d57d056 (diff)
downloadnixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.tar
nixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.tar.gz
nixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.tar.bz2
nixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.tar.lz
nixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.tar.xz
nixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.tar.zst
nixpkgs-2037f1bbe8cfea60fddd5e369c2bdceaf3abe4e2.zip
fscrypt: init at 0.2.1
Diffstat (limited to 'pkgs/os-specific/linux/fscrypt')
-rw-r--r--pkgs/os-specific/linux/fscrypt/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/fscrypt/default.nix b/pkgs/os-specific/linux/fscrypt/default.nix
new file mode 100644
index 00000000000..1564069a0a9
--- /dev/null
+++ b/pkgs/os-specific/linux/fscrypt/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, buildGoPackage, fetchFromGitHub, libargon2, pam }:
+
+# Don't use this for anything important yet!
+
+buildGoPackage rec {
+  name = "fscrypt-${version}";
+  version = "0.2.1";
+
+  goPackagePath = "github.com/google/fscrypt";
+
+  src = fetchFromGitHub {
+    owner = "google";
+    repo = "fscrypt";
+    rev = version;
+    sha256 = "0ais6l0dxinnspi6cjnzyk55cdkfsz2bzbaybg6cb4q8a5kzaccq";
+  };
+
+  buildInputs = [ libargon2 pam ];
+
+  meta = with stdenv.lib; {
+    description =
+      "A high-level tool for the management of Linux filesystem encryption";
+    longDescription = ''
+      This tool manages metadata, key generation, key wrapping, PAM integration,
+      and provides a uniform interface for creating and modifying encrypted
+      directories.
+    '';
+    inherit (src.meta) homepage;
+    license = licenses.asl20;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ primeos ];
+  };
+}