portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / by-name / wy / wyvern / package.nix
blob5afee81c6c0c8c17b989db319f3a2ae8eabc3390
1 { lib
2 , fetchCrate
3 , rustPlatform
4 , cmake
5 , pkg-config
6 , openssl
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "wyvern";
11   version = "1.4.1";
13   src = fetchCrate {
14     inherit pname version;
15     hash = "sha256-OjL3wEoh4fT2nKqb7lMefP5B0vYyUaTRj09OXPEVfW4=";
16   };
18   cargoPatches = [ ./cargo-lock.patch ];
20   cargoHash = "sha256-cwk8yFt8JrYkYlNUW9n/bgMUA6jyOpG0TSh5C+eERLY=";
22   nativeBuildInputs = [ cmake pkg-config ];
23   buildInputs = [ openssl ];
25   meta = with lib; {
26     description = "Simple CLI client for installing and maintaining linux GOG games";
27     mainProgram = "wyvern";
28     homepage = "https://git.sr.ht/~nicohman/wyvern";
29     license = licenses.gpl3;
30     maintainers = with maintainers; [ _0x4A6F ];
31     platforms = platforms.linux;
32   };