3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/rx/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, makeWrapper
2020-03-15 10:49:34 +00:00
, cmake, pkg-config
2019-09-29 22:58:05 +01:00
, xorg ? null
2020-01-11 12:38:14 +00:00
, libGL ? null }:
2019-09-29 22:58:05 +01:00
2021-01-15 13:21:58 +00:00
with lib;
rustPlatform.buildRustPackage rec {
pname = "rx";
2021-08-17 22:04:11 +01:00
version = "0.5.2";
src = fetchFromGitHub {
owner = "cloudhead";
repo = pname;
rev = "v${version}";
2021-08-17 22:04:11 +01:00
sha256 = "sha256-LTpaV/fgYUgA2M6Wz5qLHnTNywh13900g+umhgLvciM=";
};
2021-08-17 22:04:11 +01:00
cargoSha256 = "sha256-4hi1U4jl6QA7H8AKHlU+Hqz5iKGYHRXHDsrcqY7imkU=";
2020-03-15 10:49:34 +00:00
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
buildInputs = optionals stdenv.isLinux
(with xorg; [
# glfw-sys dependencies:
libX11 libXrandr libXinerama libXcursor libXi libXext
]);
# FIXME: GLFW (X11) requires DISPLAY env variable for all tests
doCheck = false;
postInstall = optionalString stdenv.isLinux ''
mkdir -p $out/share/applications
cp $src/rx.desktop $out/share/applications
2020-01-11 12:38:14 +00:00
wrapProgram $out/bin/rx --prefix LD_LIBRARY_PATH : ${libGL}/lib
'';
meta = {
description = "Modern and extensible pixel editor implemented in Rust";
2020-03-15 10:49:34 +00:00
homepage = "https://rx.cloudhead.io/";
license = licenses.gpl3;
maintainers = with maintainers; [ minijackson Br1ght0ne ];
2019-12-30 17:31:59 +00:00
platforms = [ "x86_64-linux" ];
};
}