rx: 0.3.2 -> 0.4.0

This commit is contained in:
Vladyslav M 2020-03-15 12:49:34 +02:00
parent 47f61c9d7f
commit ac106521ae
No known key found for this signature in database
GPG Key ID: 3B1AD98E3D65BD4D
1 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, rustPlatform, fetchFromGitHub, makeWrapper { stdenv, rustPlatform, fetchFromGitHub, makeWrapper
, cmake, pkgconfig , cmake, pkg-config
, xorg ? null , xorg ? null
, libGL ? null }: , libGL ? null }:
@ -7,18 +7,18 @@ with stdenv.lib;
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "rx"; pname = "rx";
version = "0.3.2"; version = "0.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cloudhead"; owner = "cloudhead";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1n5s7v2z13550gkqz7w6dw62jdy60wdi8w1lfa23609b4yhg4w94"; sha256 = "1pln65pqy39ijrld11d06klwzfhhzmrgdaxijpx9q7w9z66zmqb8";
}; };
cargoSha256 = "077cs9bf7f3h5aschcv7pbbnpaq1rg79j7f6pnyrzkmn7gxzicg3"; cargoSha256 = "143a5x61s7ywk0ljqd10jkfvs6lrhlibkm2a9lw41wq13mgzb78j";
nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; nativeBuildInputs = [ cmake pkg-config makeWrapper ];
buildInputs = optionals stdenv.isLinux buildInputs = optionals stdenv.isLinux
(with xorg; [ (with xorg; [
@ -37,7 +37,7 @@ rustPlatform.buildRustPackage rec {
meta = { meta = {
description = "Modern and extensible pixel editor implemented in Rust"; description = "Modern and extensible pixel editor implemented in Rust";
homepage = "https://cloudhead.io/rx/"; homepage = "https://rx.cloudhead.io/";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ minijackson filalex77 ]; maintainers = with maintainers; [ minijackson filalex77 ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];