nixpkgs/pkgs/tools/security/vaultwarden/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, callPackage, rustPlatform, fetchFromGitHub, fetchurl, nixosTests
2021-01-17 03:51:22 +00:00
, pkg-config, openssl
2021-05-11 14:40:37 +00:00
, libiconv, Security, CoreServices
2020-01-27 15:16:42 +00:00
, dbBackend ? "sqlite", libmysqlclient, postgresql }:
2019-04-23 19:25:46 +00:00
let
webvault = callPackage ./webvault.nix {};
in
2021-11-16 13:18:57 +00:00
rustPlatform.buildRustPackage rec {
pname = "vaultwarden";
version = "1.28.1";
2019-04-23 19:25:46 +00:00
src = fetchFromGitHub {
owner = "dani-garcia";
repo = pname;
rev = version;
hash = "sha256-YIR8if6lFJ+534qBN9k1ltFp5M7KBU5qYaI1KppTYwI=";
2019-04-23 19:25:46 +00:00
};
cargoLock = {
lockFile = ./Cargo.lock;
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2021-01-15 09:19:50 +00:00
buildInputs = with lib; [ openssl ]
2021-05-11 14:40:37 +00:00
++ optionals stdenv.isDarwin [ libiconv Security CoreServices ]
2020-01-27 15:16:42 +00:00
++ optional (dbBackend == "mysql") libmysqlclient
++ optional (dbBackend == "postgresql") postgresql;
2019-04-23 19:25:46 +00:00
2021-11-16 13:18:57 +00:00
buildFeatures = dbBackend;
2019-04-23 19:25:46 +00:00
passthru = {
inherit webvault;
tests = nixosTests.vaultwarden;
updateScript = callPackage ./update.nix {};
};
2020-06-06 10:55:50 +00:00
meta = with lib; {
2020-01-27 15:16:42 +00:00
description = "Unofficial Bitwarden compatible server written in Rust";
homepage = "https://github.com/dani-garcia/vaultwarden";
license = licenses.agpl3Only;
maintainers = with maintainers; [ msteen ivan ];
2019-04-23 19:25:46 +00:00
};
}