Merge pull request #66641 from 0x4A6F/master-wyvern
wyvern: init at 1.4.1
This commit is contained in:
commit
ee16664c28
3 changed files with 2552 additions and 0 deletions
2514
pkgs/games/wyvern/cargo-lock.patch
Normal file
2514
pkgs/games/wyvern/cargo-lock.patch
Normal file
File diff suppressed because it is too large
Load diff
36
pkgs/games/wyvern/default.nix
Normal file
36
pkgs/games/wyvern/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchgit
|
||||||
|
, rustPlatform
|
||||||
|
, unzip
|
||||||
|
, rsync
|
||||||
|
, innoextract
|
||||||
|
, curl
|
||||||
|
, cmake
|
||||||
|
, pkgconfig
|
||||||
|
, openssl
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "wyvern";
|
||||||
|
version = "1.4.1";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://git.sr.ht/~nicohman/wyvern";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1sl3yhash1527amc8rs4374fd7jbgnkyy7qpw94ms2gs80sdv3s5";
|
||||||
|
};
|
||||||
|
cargoPatches = [ ./cargo-lock.patch ];
|
||||||
|
|
||||||
|
cargoSha256 = "sha256:1nd5qla3p1jrssg5fqal8m3jcbxax0wsfc8cp97jdrpqlcgqfmrx";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -27543,6 +27543,8 @@ in
|
||||||
wxGTK = wxGTK30;
|
wxGTK = wxGTK30;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wyvern = callPackage ../games/wyvern { };
|
||||||
|
|
||||||
x11idle = callPackage ../tools/misc/x11idle {};
|
x11idle = callPackage ../tools/misc/x11idle {};
|
||||||
|
|
||||||
x11docker = callPackage ../applications/virtualization/x11docker { };
|
x11docker = callPackage ../applications/virtualization/x11docker { };
|
||||||
|
|
Loading…
Reference in a new issue