From 0374212e42d457f31544939d4bc4db08ccdadf45 Mon Sep 17 00:00:00 2001 From: mat ess Date: Sun, 17 Jul 2022 15:23:18 -0400 Subject: [PATCH] Drop gurk --- flake.nix | 4 ---- home/default.nix | 3 --- pkgs/gurk-rs.nix | 30 ------------------------------ 3 files changed, 37 deletions(-) delete mode 100644 pkgs/gurk-rs.nix diff --git a/flake.nix b/flake.nix index 69490f9..7663762 100644 --- a/flake.nix +++ b/flake.nix @@ -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 = { }; }; }; diff --git a/home/default.nix b/home/default.nix index 39dbb90..a66e4d1 100644 --- a/home/default.nix +++ b/home/default.nix @@ -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 diff --git a/pkgs/gurk-rs.nix b/pkgs/gurk-rs.nix deleted file mode 100644 index 545008c..0000000 --- a/pkgs/gurk-rs.nix +++ /dev/null @@ -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 ]; - }; -}