eidolon: openssl_1_1 -> openssl_3

This commit is contained in:
0x4A6F 2023-01-13 02:00:20 +01:00
parent ec001e5a70
commit 7933a9399e
No known key found for this signature in database
GPG key ID: 8DEDBA5BE07080E1
3 changed files with 2729 additions and 13 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,10 @@
{ lib, fetchFromSourcehut, rustPlatform, pkg-config, openssl }:
{
lib,
fetchFromSourcehut,
rustPlatform,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage rec {
pname = "eidolon";
@ -8,15 +14,20 @@ rustPlatform.buildRustPackage rec {
owner = "~nicohman";
repo = pname;
rev = version;
sha256 = "1yn3k569pxzw43mmsk97088xpkdc714rks3ncchbb6ccx25kgxrr";
sha256 = "sha256-Ofc3i+iMmbUgY3bomUk4rM3bEQInTV3rIPz3m0yZw/o=";
};
cargoPatches = [ ./cargo-lock.patch ];
cargoSha256 = "01mnfn6j4sj9iqw5anpx8lqm9jmk7wdrx3h2hcvqcmkyrk1nggx0";
cargoSha256 = "sha256-1d+Wgx6tBS1Rb8WpVrD/ja0zXdoE2Q9ZlUS/3p8OYWM=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
OPENSSL_NO_VENDOR = 1;
OPENSSL_LIB_DIR = "${lib.getLib openssl}/lib";
OPENSSL_INCLUDE_DIR = "${openssl.dev}/include";
OPENSSL_DIR="${lib.getDev openssl}";
meta = with lib; {
description = "A single TUI-based registry for drm-free, wine and steam games on linux, accessed through a rofi launch menu";
homepage = "https://github.com/nicohman/eidolon";

View file

@ -34497,9 +34497,7 @@ with pkgs;
egoboo = callPackage ../games/egoboo { };
eidolon = callPackage ../games/eidolon {
openssl = openssl_1_1;
};
eidolon = callPackage ../games/eidolon { };
EmptyEpsilon = callPackage ../games/empty-epsilon { };