Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3804ef880cf1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33941e49f2f4
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 8, 2020

  1. tiny: init at 0.5.1

    Br1ght0ne committed Jan 8, 2020
    Copy the full SHA
    cb132f9 View commit details

Commits on Jan 16, 2020

  1. Merge pull request #76868 from filalex77/tiny-0.5.0

    tiny: init at 0.5.1
    marsam authored Jan 16, 2020
    Copy the full SHA
    33941e4 View commit details
Showing with 37 additions and 0 deletions.
  1. +35 −0 pkgs/applications/networking/irc/tiny/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
35 changes: 35 additions & 0 deletions pkgs/applications/networking/irc/tiny/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21665,6 +21665,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 { };