taizen: update Cargo.lock, unpin openssl, add figsoda as a maintainer

This commit is contained in:
figsoda 2023-05-13 19:38:13 -04:00
parent a3bc5c48af
commit c774fa6572
3 changed files with 2297 additions and 9 deletions

2270
pkgs/applications/misc/taizen/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,12 @@
{ rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkg-config, Security, stdenv }:
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, ncurses
, openssl
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "taizen";
@ -11,15 +19,28 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-cMykIh5EDGYZMJ5EPTU6G8YDXxfUzzfRfEICWmDUdrA=";
};
buildInputs = [ ncurses openssl ] ++ lib.optional stdenv.isDarwin Security;
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [ pkg-config ];
cargoSha256 = "sha256-E2Wd8y47yd1thY/Bo1raP4tPd5YqdWWP4R/e0NWOc/A=";
buildInputs = [
ncurses
openssl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
# update Cargo.lock to work with openssl 3
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
meta = with lib; {
description = "curses based mediawiki browser";
homepage = "https://github.com/nerdypepper/taizen";
license = licenses.mit;
description = "curses based mediawiki browser";
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -34197,10 +34197,7 @@ with pkgs;
tailor = callPackage ../applications/version-management/tailor { };
taizen = callPackage ../applications/misc/taizen {
inherit (darwin.apple_sdk.frameworks) Security;
openssl = openssl_1_1;
};
taizen = callPackage ../applications/misc/taizen { };
talosctl = callPackage ../applications/networking/cluster/talosctl { };