commit
a40718a8dc
2 changed files with 60 additions and 0 deletions
58
pkgs/applications/graphics/rx/default.nix
Normal file
58
pkgs/applications/graphics/rx/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
{ stdenv, rustPlatform, fetchFromGitHub, makeWrapper
|
||||||
|
, cmake, pkgconfig
|
||||||
|
, xorg ? null
|
||||||
|
, vulkan-loader ? null }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux -> xorg != null;
|
||||||
|
assert stdenv.isLinux -> vulkan-loader != null;
|
||||||
|
|
||||||
|
let
|
||||||
|
graphicsBackend = if stdenv.isDarwin then "metal" else "vulkan";
|
||||||
|
in
|
||||||
|
with stdenv.lib;
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "rx";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cloudhead";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0f6cw8zqr45bprj8ibhp89bb2a077g4zinfrdn943csdmh47qzcl";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "05bqsw0nw24xysq86qa3hx9b5ncf50wfxsgpy388yrs2dfnphwlx";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
|
||||||
|
|
||||||
|
buildInputs = optionals stdenv.isLinux
|
||||||
|
(with xorg; [
|
||||||
|
# glfw-sys dependencies:
|
||||||
|
libX11 libXrandr libXinerama libXcursor libXi libXext
|
||||||
|
]);
|
||||||
|
|
||||||
|
cargoBuildFlags = [ "--features=${graphicsBackend}" ];
|
||||||
|
|
||||||
|
# TODO: better to factor that into the rust platform
|
||||||
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
echo "Running cargo test"
|
||||||
|
cargo test --features=${graphicsBackend}
|
||||||
|
runHook postCheck
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = optional stdenv.isLinux ''
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
cp $src/rx.desktop $out/share/applications
|
||||||
|
wrapProgram $out/bin/rx --prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Modern and extensible pixel editor implemented in Rust";
|
||||||
|
homepage = "https://cloudhead.io/rx/";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ minijackson ];
|
||||||
|
platforms = with platforms; (linux ++ darwin ++ windows);
|
||||||
|
inherit version;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5926,6 +5926,8 @@ in
|
||||||
|
|
||||||
recordmydesktop = callPackage ../applications/video/recordmydesktop { };
|
recordmydesktop = callPackage ../applications/video/recordmydesktop { };
|
||||||
|
|
||||||
|
rx = callPackage ../applications/graphics/rx { };
|
||||||
|
|
||||||
gtk-recordmydesktop = callPackage ../applications/video/recordmydesktop/gtk.nix {
|
gtk-recordmydesktop = callPackage ../applications/video/recordmydesktop/gtk.nix {
|
||||||
jack2 = jack2Full;
|
jack2 = jack2Full;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue