nixpkgs/pkgs/games/wyvern/default.nix

37 lines
817 B
Nix
Raw Permalink Normal View History

{ lib
2019-08-14 17:59:35 +00:00
, fetchgit
, rustPlatform
, unzip
, rsync
, innoextract
, curl
, cmake
, pkg-config
2019-08-14 17:59:35 +00:00
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "wyvern";
version = "1.4.1";
src = fetchgit {
url = "https://git.sr.ht/~nicohman/wyvern";
rev = version;
2019-08-14 17:59:35 +00:00
sha256 = "1sl3yhash1527amc8rs4374fd7jbgnkyy7qpw94ms2gs80sdv3s5";
};
cargoPatches = [ ./cargo-lock.patch ];
cargoSha256 = "sha256:1nd5qla3p1jrssg5fqal8m3jcbxax0wsfc8cp97jdrpqlcgqfmrx";
nativeBuildInputs = [ cmake pkg-config ];
2019-08-14 17:59:35 +00:00
buildInputs = [ openssl ];
meta = with lib; {
2019-08-14 17:59:35 +00:00
description = "A simple CLI client for installing and maintaining linux GOG games";
homepage = "https://git.sr.ht/~nicohman/wyvern";
license = licenses.gpl3;
maintainers = with maintainers;[ _0x4A6F ];
platforms = platforms.linux;
};
}