mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
531e4b80c9
Only acts on one-line dependency lists.
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
# This file was generated by go2nix.
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, pkgconfig, openssl }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
goFuseVersion = substring 0 7 (head (filter (
|
|
d: d.goPackagePath == "github.com/hanwen/go-fuse"
|
|
) (import ./deps.nix))).fetch.rev;
|
|
in buildGoPackage rec {
|
|
name = "gocryptfs-${version}";
|
|
version = "1.1.1";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/rfjakob/gocryptfs";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "rfjakob";
|
|
repo = "gocryptfs";
|
|
sha256 = "0p173x2s0km7a43h6ihir5p19fdlkkb9lc9120k9hccr33iws25z";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ openssl];
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
postPatch = "rm -r tests";
|
|
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X main.GitVersion=${rev}
|
|
-X main.GitVersionFuse=${goFuseVersion}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Encrypted overlay filesystem written in Go";
|
|
license = licenses.mit;
|
|
homepage = https://nuetzlich.net/gocryptfs/;
|
|
maintainers = with maintainers; [offline];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|