Drop gurk
parent
e2fc80cdab
commit
0374212e42
|
@ -36,14 +36,11 @@
|
||||||
final: prev:
|
final: prev:
|
||||||
{
|
{
|
||||||
dark-mode-notify = final.callPackage ./pkgs/dark-mode-notify.nix { inherit (inputs) dark-mode-notify-src; };
|
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
|
} // optionalAttrs
|
||||||
(prev.stdenv.system == "aarch64-darwin")
|
(prev.stdenv.system == "aarch64-darwin")
|
||||||
{
|
{
|
||||||
# Sub in x86 version of packages that don't build on Apple Silicon yet
|
# Sub in x86 version of packages that don't build on Apple Silicon yet
|
||||||
inherit (final.pkgs-x86);
|
inherit (final.pkgs-x86);
|
||||||
# Sub in one off patches
|
|
||||||
inherit (final.patched);
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -180,7 +177,6 @@
|
||||||
system = "x86_64-darwin";
|
system = "x86_64-darwin";
|
||||||
inherit (nixpkgsConfig) config;
|
inherit (nixpkgsConfig) config;
|
||||||
};
|
};
|
||||||
patched = { };
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -83,9 +83,6 @@
|
||||||
tealdeer # rust implementation of `tldr`
|
tealdeer # rust implementation of `tldr`
|
||||||
xh # reimplementation of `httpie` in rust
|
xh # reimplementation of `httpie` in rust
|
||||||
|
|
||||||
# TUI apps
|
|
||||||
gurk-rs
|
|
||||||
|
|
||||||
# Useful nix related tools
|
# Useful nix related tools
|
||||||
cachix # adding/managing alternative binary caches hosted by Cachix
|
cachix # adding/managing alternative binary caches hosted by Cachix
|
||||||
comma # run software from without installing it
|
comma # run software from without installing it
|
||||||
|
|
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue