nixpkgs/pkgs/games/eidolon/default.nix

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

39 lines
828 B
Nix
Raw Normal View History

2023-01-13 01:00:20 +00:00
{
lib,
fetchFromSourcehut,
rustPlatform,
pkg-config,
openssl,
}:
2019-09-20 22:59:20 +00:00
rustPlatform.buildRustPackage rec {
pname = "eidolon";
version = "1.4.6";
2020-10-31 12:20:43 +00:00
src = fetchFromSourcehut {
owner = "~nicohman";
repo = pname;
rev = version;
2023-01-13 01:00:20 +00:00
sha256 = "sha256-Ofc3i+iMmbUgY3bomUk4rM3bEQInTV3rIPz3m0yZw/o=";
2019-09-20 22:59:20 +00:00
};
cargoLock = {
lockFile = ./Cargo.lock;
};
2019-09-20 22:59:20 +00:00
nativeBuildInputs = [ pkg-config ];
2019-09-20 22:59:20 +00:00
buildInputs = [ openssl ];
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
2023-01-13 01:00:20 +00:00
meta = with lib; {
2019-09-20 22:59:20 +00:00
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";
license = licenses.gpl3Only;
2020-07-29 10:49:07 +00:00
maintainers = with maintainers; [ _0x4A6F ];
2019-09-20 22:59:20 +00:00
platforms = platforms.linux;
};
}