mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeBinaryWrapper
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, vala
|
|
, wrapGAppsHook3
|
|
, gocryptfs
|
|
, gtk3
|
|
, json-glib
|
|
, libgee
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cryptor";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moson-mo";
|
|
repo = "cryptor";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-EqiaWgwhSLwZnovqYQ9rfHwvhWucmK0ujSsOhMJEJ1A=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeBinaryWrapper
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
json-glib
|
|
libgee
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cryptor \
|
|
--prefix PATH : "${lib.makeBinPath [ gocryptfs ]}"
|
|
|
|
install -Dm444 $src/resources/misc/cryptor.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/cryptor.desktop \
|
|
--replace-warn '/usr/bin/cryptor' 'cryptor'
|
|
'';
|
|
|
|
meta = {
|
|
description = "Simple gocryptfs GUI";
|
|
homepage = "https://github.com/moson-mo/cryptor";
|
|
license = lib.licenses.bsd3;
|
|
mainProgram = "cryptor";
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|