Drop gurk

main
mat ess 2022-07-17 15:23:18 -04:00
parent e2fc80cdab
commit 0374212e42
3 changed files with 0 additions and 37 deletions

View File

@ -36,14 +36,11 @@
final: prev:
{
dark-mode-notify = final.callPackage ./pkgs/dark-mode-notify.nix { inherit (inputs) dark-mode-notify-src; };
gurk-rs = final.callPackage ./pkgs/gurk-rs.nix { };
} // optionalAttrs
(prev.stdenv.system == "aarch64-darwin")
{
# Sub in x86 version of packages that don't build on Apple Silicon yet
inherit (final.pkgs-x86);
# Sub in one off patches
inherit (final.patched);
}
);
};
@ -180,7 +177,6 @@
system = "x86_64-darwin";
inherit (nixpkgsConfig) config;
};
patched = { };
};
};

View File

@ -83,9 +83,6 @@
tealdeer # rust implementation of `tldr`
xh # reimplementation of `httpie` in rust
# TUI apps
gurk-rs
# Useful nix related tools
cachix # adding/managing alternative binary caches hosted by Cachix
comma # run software from without installing it

View File

@ -1,30 +0,0 @@
{ stdenv
, lib
, protobuf
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "gurk-rs";
version = "0.2.4";
src = fetchFromGitHub {
owner = "boxdot";
repo = pname;
rev = "v${version}";
sha256 = "sha256-WZUoUvu7GaiBOaRAOGRCXrLe6u3DRbI6CDTAf5jryGc=";
};
cargoHash = "sha256-81ZW61JX40W0D/cmYogR3RJH2dvEKW1K7sIsl2io/7E=";
buildInputs = [ protobuf ];
PROTOC = "${protobuf}/bin/protoc";
meta = with lib; {
description = "Signal Messenger client for terminal";
homepage = "https://github.com/boxdot/gurk-rs";
license = licenses.agpl3Only;
maintainers = with maintainers; [ devhell ];
};
}