mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, openssl, pandoc, pkgconfig }:
|
|
|
|
let
|
|
goFuseVersion = with stdenv.lib; substring 0 7 (head (filter (
|
|
d: d.goPackagePath == "github.com/hanwen/go-fuse"
|
|
) (import ./deps.nix))).fetch.rev;
|
|
in
|
|
buildGoPackage rec {
|
|
pname = "gocryptfs";
|
|
version = "1.8.0";
|
|
|
|
goPackagePath = "github.com/rfjakob/gocryptfs";
|
|
|
|
nativeBuildInputs = [ pandoc pkgconfig ];
|
|
buildInputs = [ openssl ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rfjakob";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1acalwrr5xqhpqca3gypj0s68w6vpckxmg5z5gfgh8wx6nqx4aw9";
|
|
};
|
|
|
|
postPatch = "rm -r tests";
|
|
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X main.GitVersion=${version}
|
|
-X main.GitVersionFuse=${goFuseVersion}
|
|
'';
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
postBuild = ''
|
|
pushd go/src/github.com/rfjakob/gocryptfs/Documentation/
|
|
mkdir -p $out/share/man/man1
|
|
pandoc MANPAGE.md -s -t man -o $out/share/man/man1/gocryptfs.1
|
|
pandoc MANPAGE-XRAY.md -s -t man -o $out/share/man/man1/gocryptfs-xray.1
|
|
popd
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Encrypted overlay filesystem written in Go";
|
|
license = licenses.mit;
|
|
homepage = "https://nuetzlich.net/gocryptfs/";
|
|
maintainers = with maintainers; [ flokli offline ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|