3da886bf41
These are all packages that I stopped using and hence just create noise in my inbox for each change affecting them and let's face it, while I still enjoy contributing to nixpkgs, it doesn't really make sense to be listed there if I can't do much anyways. Each of these packages can be taken over by someone or removed if people think that's reasonable. Of course, if other maintainers face issues, I can answer some questions if needed & possible.
26 lines
756 B
Nix
26 lines
756 B
Nix
{ rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkg-config, Security, stdenv }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "taizen";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NerdyPepper";
|
|
repo = pname;
|
|
rev = "5c1876429e2da7424e9d31b1e16f5a3147cc58d0";
|
|
sha256 = "09izgx7icvizskdy9kplk0am61p7550fsd0v42zcihq2vap2j92z";
|
|
};
|
|
|
|
buildInputs = [ ncurses openssl ] ++ lib.optional stdenv.isDarwin Security;
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
cargoSha256 = "1yqy5v02a4qshgb7k8rnn408k3n6qx3jc8zziwvv7im61n9sjynf";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://crates.io/crates/taizen";
|
|
license = licenses.mit;
|
|
description = "curses based mediawiki browser";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|