2021-06-15 19:43:05 +01:00
|
|
|
{ stdenv, lib, rustPlatform, fetchFromGitHub, pkg-config, ncurses, python3, openssl, libgpgerror, gpgme, xorg, AppKit, Security, installShellFiles }:
|
2019-08-24 15:41:00 +01:00
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
2021-06-15 19:43:05 +01:00
|
|
|
version = "0.5.1";
|
2019-08-24 15:41:00 +01:00
|
|
|
pname = "ripasso-cursive";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cortex";
|
|
|
|
repo = "ripasso";
|
2019-12-02 12:40:46 +00:00
|
|
|
rev = "release-${version}";
|
2021-06-15 19:43:05 +01:00
|
|
|
sha256 = "1jx6qv7skikl1ap3g1r34rkz4ab756kra7dgwwv45vl2fb6x74k4";
|
2019-08-24 15:41:00 +01:00
|
|
|
};
|
|
|
|
|
2020-05-13 21:22:51 +01:00
|
|
|
patches = [ ./fix-tests.patch ];
|
|
|
|
|
2021-06-15 19:43:05 +01:00
|
|
|
cargoSha256 = "1li1gmcs7lnjr4qhzs0rrgngdcxy1paiibjwk9zx2rrs71021cgk";
|
2019-12-02 12:40:46 +00:00
|
|
|
|
2021-06-15 19:43:05 +01:00
|
|
|
cargoBuildFlags = [ "-p ripasso-cursive" ];
|
2019-08-24 15:41:00 +01:00
|
|
|
|
2021-06-15 19:43:05 +01:00
|
|
|
nativeBuildInputs = [ pkg-config gpgme python3 installShellFiles ];
|
2019-08-24 15:41:00 +01:00
|
|
|
buildInputs = [
|
2020-03-29 09:02:25 +01:00
|
|
|
ncurses openssl libgpgerror gpgme xorg.libxcb
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [ AppKit Security ];
|
2019-12-02 12:40:46 +00:00
|
|
|
|
2021-06-15 19:43:05 +01:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage target/man-page/cursive/ripasso-cursive.1
|
2019-12-02 12:40:46 +00:00
|
|
|
'';
|
2019-08-24 15:41:00 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-08-24 15:41:00 +01:00
|
|
|
description = "A simple password manager written in Rust";
|
|
|
|
homepage = "https://github.com/cortex/ripasso";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ sgo ];
|
2019-12-02 12:40:46 +00:00
|
|
|
platforms = platforms.unix;
|
2019-08-24 15:41:00 +01:00
|
|
|
};
|
|
|
|
}
|