ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / games / jumpy / default.nix
blob645069e4354d34904343a42d4a02cde5a8bc5b88
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , stdenv
5 , pkg-config
6 , alsa-lib
7 , libGL
8 , xorg
9 , udev
10 , Cocoa
11 , OpenGL
14 rustPlatform.buildRustPackage rec {
15   pname = "jumpy";
16   version = "0.4.3";
18   src = fetchFromGitHub {
19     owner = "fishfolks";
20     repo = pname;
21     rev = "v${version}";
22     sha256 = "sha256-01zhiQi6v/8ZajsdBU+4hKUCj+PRJ/vUHluOIzy/Gi8=";
23   };
25   cargoSha256 = "sha256-AXaGuRqSFiq+Uiy+UaqPdPVyDhCogC64KZZ0Ah1Yo7A=";
27   nativeBuildInputs = lib.optionals stdenv.isLinux [
28     pkg-config
29   ];
31   buildInputs = lib.optionals stdenv.isLinux [
32     alsa-lib
33     libGL
34     xorg.libX11
35     xorg.libXi
36     udev
37   ] ++ lib.optionals stdenv.isDarwin [
38     Cocoa
39     OpenGL
40   ];
42   postPatch = ''
43     substituteInPlace src/main.rs \
44       --replace ./assets $out/share/assets \
45       --replace ./mods $out/share/mods
46   '';
48   postInstall = ''
49     mkdir $out/share
50     cp -r assets mods $out/share
51   '';
53   meta = with lib; {
54     description = "A tactical 2D shooter played by up to 4 players online or on a shared screen";
55     homepage = "https://fishfight.org/";
56     license = with licenses; [ mit /* or */ asl20 ];
57     maintainers = with maintainers; [ figsoda ];
58   };