Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ga / game-rs / package.nix
blob40c66d6f8c71f9741c5a000d028185f0e7048489
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , steam-run
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "game-rs";
9   version = "0.2.0";
11   src = fetchFromGitHub {
12     owner = "amanse";
13     repo = "game-rs";
14     rev = "v${version}";
15     hash = "sha256-FuZl2yNre5jNSfHqF3tjiGwg5mRKbYer2FOPpLy0OrA=";
16   };
18   cargoHash = "sha256-fNC8Aff09nTSbtxZg5qEKtvFyKFLRVjaokWiZihZCgM=";
20   buildFeatures = [ "nixos" ];
22   propagatedBuildInputs = [ steam-run ];
24   meta = with lib; {
25     description = "Minimal CLI game launcher for linux";
26     homepage = "https://github.com/amanse/game-rs";
27     changelog = "https://github.com/Amanse/game-rs/releases/tag/v${version}";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ amanse ];
30     platforms = platforms.linux;
31   };