aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/graphics/rx/default.nix
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2020-01-11 13:38:14 +0100
committerJon <jonringer@users.noreply.github.com>2020-01-11 13:08:13 -0800
commitdf7ed4382cc1997b93c7178ab249cd73e9cc65c3 (patch)
tree05fe65af61361bc715f8b4a6b000128e423a9801 /pkgs/applications/graphics/rx/default.nix
parent1657acd5d417eac96e44b8d670988872192ddc0a (diff)
rx: 0.3.0 -> 0.3.1
Diffstat (limited to 'pkgs/applications/graphics/rx/default.nix')
-rw-r--r--pkgs/applications/graphics/rx/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/rx/default.nix b/pkgs/applications/graphics/rx/default.nix
index cc5d00d64ecc..f2b56b578b6e 100644
--- a/pkgs/applications/graphics/rx/default.nix
+++ b/pkgs/applications/graphics/rx/default.nix
@@ -1,22 +1,22 @@
{ stdenv, rustPlatform, fetchFromGitHub, makeWrapper
, cmake, pkgconfig
, xorg ? null
-, vulkan-loader ? null }:
+, libGL ? null }:
with stdenv.lib;
rustPlatform.buildRustPackage rec {
pname = "rx";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "cloudhead";
repo = pname;
rev = "v${version}";
- sha256 = "0mhpq9x54d884ydmfv1358sgc4jc7bghfx2y0k7p879hyyxr52v1";
+ sha256 = "1byaxbhd3q49473kcdd52rvn3xq7bmy8bdx3pz0jiw96bclzhcgq";
};
- cargoSha256 = "0fnrgijfkvapj1yyy9grnqh2vkciisf029af0gfwyzsxzdi62gg5";
+ cargoSha256 = "173jfjvdag97f6jvfg366hjk9v3cz301cbzpcahy51rbf1cip1w1";
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec {
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
+ wrapProgram $out/bin/rx --prefix LD_LIBRARY_PATH : ${libGL}/lib
'';
meta = {