nixpkgs/pkgs/applications/graphics/rx/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2019-09-29 21:58:05 +00:00
{ stdenv, rustPlatform, fetchFromGitHub, makeWrapper
, cmake, pkgconfig
, xorg ? null
2020-01-11 12:38:14 +00:00
, libGL ? null }:
2019-09-29 21:58:05 +00:00
with stdenv.lib;
rustPlatform.buildRustPackage rec {
pname = "rx";
2020-01-11 12:38:14 +00:00
version = "0.3.1";
src = fetchFromGitHub {
owner = "cloudhead";
repo = pname;
rev = "v${version}";
2020-01-11 12:38:14 +00:00
sha256 = "1byaxbhd3q49473kcdd52rvn3xq7bmy8bdx3pz0jiw96bclzhcgq";
};
2020-01-11 12:38:14 +00:00
cargoSha256 = "173jfjvdag97f6jvfg366hjk9v3cz301cbzpcahy51rbf1cip1w1";
nativeBuildInputs = [ cmake pkgconfig 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 = optional 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";
homepage = "https://cloudhead.io/rx/";
license = licenses.gpl3;
2019-12-30 15:23:17 +00:00
maintainers = with maintainers; [ minijackson filalex77 ];
2019-12-30 17:31:59 +00:00
platforms = [ "x86_64-linux" ];
};
}