Merge pull request #160665 from devhell/init-gurk-rs

gurk-rs: init at 0.2.3

authored by

Ivv and committed by
GitHub
7d50f119 2aa70ef5

+32
+30
pkgs/applications/networking/instant-messengers/gurk-rs/default.nix
··· 1 + { stdenv 2 + , lib 3 + , protobuf 4 + , rustPlatform 5 + , fetchFromGitHub 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "gurk-rs"; 10 + version = "0.2.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "boxdot"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + sha256 = "sha256-Mko5udM8BY50uUwn7xESxB+s0MEO1kAJX4Dt/DnEEa4="; 17 + }; 18 + 19 + cargoHash = "sha256-pYMMgBvLsqkj2peouDQK1vn97ByUjtdCrkbzuZZLXrY="; 20 + buildInputs = [ protobuf ]; 21 + 22 + PROTOC = "${protobuf}/bin/protoc"; 23 + 24 + meta = with lib; { 25 + description = "Signal Messenger client for terminal"; 26 + homepage = "https://github.com/boxdot/gurk-rs"; 27 + license = licenses.agpl3Only; 28 + maintainers = with maintainers; [ devhell ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 25649 25649 fftw = fftwSinglePrec; 25650 25650 }; 25651 25651 25652 + gurk-rs = callPackage ../applications/networking/instant-messengers/gurk-rs { }; 25653 + 25652 25654 gjay = callPackage ../applications/audio/gjay { }; 25653 25655 25654 25656 photivo = callPackage ../applications/graphics/photivo { };