Merge pull request #67402 from stigtsp/package/ripasso-cursive-unstable
ripasso-cursive: init unstable at 2019-08-27
This commit is contained in:
commit
eb0189c1dc
|
@ -5686,6 +5686,12 @@
|
||||||
githubId = 918365;
|
githubId = 918365;
|
||||||
name = "Stefan Frijters";
|
name = "Stefan Frijters";
|
||||||
};
|
};
|
||||||
|
sgo = {
|
||||||
|
email = "stig@stig.io";
|
||||||
|
github = "stigtsp";
|
||||||
|
githubId = 75371;
|
||||||
|
name = "Stig Palmquist";
|
||||||
|
};
|
||||||
sgraf = {
|
sgraf = {
|
||||||
email = "sgraf1337@gmail.com";
|
email = "sgraf1337@gmail.com";
|
||||||
github = "sgraf812";
|
github = "sgraf812";
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
{ stdenv, lib, rustPlatform, fetchFromGitHub, pkgconfig, ncurses, python3, openssl, libgpgerror, gpgme, xorg }:
|
||||||
|
|
||||||
|
with rustPlatform;
|
||||||
|
buildRustPackage rec {
|
||||||
|
version = "unstable-2019-08-27";
|
||||||
|
pname = "ripasso-cursive";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cortex";
|
||||||
|
repo = "ripasso";
|
||||||
|
rev = "1b5ef4ae19f95f1422ba5cb09e9e689880599c40";
|
||||||
|
sha256 = "1lh1in8knpqz4vbsmdyd4hh8y4bfhxjciysfbq3qzdpdpihgj0nn";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0dwaa106vj7jbgshhqpjabsr0zmkg1a5syzky7jcaasvc7r7njwl";
|
||||||
|
cargoBuildFlags = [ "-p ripasso-cursive" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [
|
||||||
|
ncurses python3 openssl libgpgerror gpgme xorg.libxcb
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A simple password manager written in Rust";
|
||||||
|
homepage = "https://github.com/cortex/ripasso";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ sgo ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1930,6 +1930,8 @@ in
|
||||||
conf = config.riot-web.conf or null;
|
conf = config.riot-web.conf or null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ripasso-cursive = callPackage ../tools/security/ripasso/cursive.nix {};
|
||||||
|
|
||||||
roundcube = callPackage ../servers/roundcube { };
|
roundcube = callPackage ../servers/roundcube { };
|
||||||
|
|
||||||
roundcubePlugins = dontRecurseIntoAttrs (callPackage ../servers/roundcube/plugins { });
|
roundcubePlugins = dontRecurseIntoAttrs (callPackage ../servers/roundcube/plugins { });
|
||||||
|
|
Loading…
Reference in New Issue