uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
46
pkgs/tools/filesystems/securefs/default.nix
Normal file
46
pkgs/tools/filesystems/securefs/default.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{ lib, stdenv, fetchFromGitHub
|
||||
, cmake
|
||||
, fuse }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "securefs";
|
||||
version = "0.11.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
sha256 = "1sxfgqgy63ml7vg7zj3glvra4wj2qmfv9jzmpm1jqy8hq7qlqlsx";
|
||||
rev = version;
|
||||
repo = "securefs";
|
||||
owner = "netheril96";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Make it build with macFUSE
|
||||
# Backported from https://github.com/netheril96/securefs/pull/114
|
||||
./add-macfuse-support.patch
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e '/TEST_SOURCES/d' CMakeLists.txt
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ fuse ];
|
||||
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Transparent encryption filesystem";
|
||||
longDescription = ''
|
||||
Securefs is a filesystem in userspace (FUSE) that transparently encrypts
|
||||
and authenticates data stored. It is particularly designed to secure
|
||||
data stored in the cloud.
|
||||
Securefs mounts a regular directory onto a mount point. The mount point
|
||||
appears as a regular filesystem, where one can read/write/create files,
|
||||
directories and symbolic links. The underlying directory will be
|
||||
automatically updated to contain the encrypted and authenticated
|
||||
contents.
|
||||
'';
|
||||
license = with licenses; [ bsd2 mit ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue