tiny: init at 0.5.1

This commit is contained in:
Oleksii Filonenko 2020-01-03 12:18:45 +02:00
parent 1eb5d0c091
commit cb132f981f
No known key found for this signature in database
GPG Key ID: F3510FE5691629A1
2 changed files with 37 additions and 0 deletions

@ -0,0 +1,35 @@
{ stdenv
, lib
, rustPlatform
, fetchpatch
, fetchFromGitHub
, pkg-config
, dbus
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "tiny";
version = "0.5.1";
src = fetchFromGitHub {
owner = "osa1";
repo = pname;
rev = "v${version}";
sha256 = "1m57xsrc7lzkrm8k1wh3yx3in5bhd0qjzygxdwr8lvigpsiy5caa";
};
cargoSha256 = "1vj6whnx8gd5r66zric9163ddlqc4al4azj0dvhv5sq0r33871kv";
RUSTC_BOOTSTRAP = 1;
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;
buildInputs = lib.optionals stdenv.isLinux [ dbus openssl ];
meta = with lib; {
description = "A console IRC client";
homepage = "https://github.com/osa1/tiny";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
};
}

@ -21642,6 +21642,8 @@ in
tint2 = callPackage ../applications/misc/tint2 { };
tiny = callPackage ../applications/networking/irc/tiny { };
tixati = callPackage ../applications/networking/p2p/tixati { };
tkcvs = callPackage ../applications/version-management/tkcvs { };