biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / rx / default.nix
blob943f46fab649c2d1046e7c59461bf06725c5a3d1
1 { lib, stdenv, rustPlatform, fetchFromGitHub, makeWrapper
2 , cmake, pkg-config
3 , xorg ? null
4 , libGL ? null }:
6 rustPlatform.buildRustPackage rec {
7   pname = "rx";
8   version = "0.5.2";
10   src = fetchFromGitHub {
11     owner = "cloudhead";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-LTpaV/fgYUgA2M6Wz5qLHnTNywh13900g+umhgLvciM=";
15   };
17   cargoHash = "sha256-4hi1U4jl6QA7H8AKHlU+Hqz5iKGYHRXHDsrcqY7imkU=";
19   nativeBuildInputs = [ cmake pkg-config makeWrapper ];
21   buildInputs = lib.optionals stdenv.hostPlatform.isLinux
22   (with xorg; [
23     # glfw-sys dependencies:
24     libX11 libXrandr libXinerama libXcursor libXi libXext
25   ]);
27   # FIXME: GLFW (X11) requires DISPLAY env variable for all tests
28   doCheck = false;
30   postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
31     mkdir -p $out/share/applications
32     cp $src/rx.desktop $out/share/applications
33     wrapProgram $out/bin/rx --prefix LD_LIBRARY_PATH : ${libGL}/lib
34   '';
36   meta = with lib; {
37     description = "Modern and extensible pixel editor implemented in Rust";
38     mainProgram = "rx";
39     homepage = "https://rx.cloudhead.io/";
40     license = licenses.gpl3;
41     maintainers = with maintainers; [ minijackson Br1ght0ne ];
42     platforms = [ "x86_64-linux" ];
43   };