mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
tiny: 0.11.0 -> 0.12.0
Diff: https://github.com/osa1/tiny/compare/v0.11.0...v0.12.0 Changelog: https://github.com/osa1/tiny/blob/v0.12.0/CHANGELOG.md
This commit is contained in:
parent
8a5323a5e4
commit
4d5a99b3df
@ -12,18 +12,21 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "tiny";
|
||||
version = "0.11.0";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "osa1";
|
||||
repo = pname;
|
||||
repo = "tiny";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-oOaLQh9gJlurHi9awoRh4wQnXwkuOGJLnGQA6di6k1Q=";
|
||||
hash = "sha256-VlKhOHNggT+FbMvE/N2JQOJf0uB1N69HHdP09u89qSk=";
|
||||
};
|
||||
|
||||
cargoPatches = [ ./Cargo.lock.patch ];
|
||||
cargoHash = "sha256-AhQCfLCoJU7o8s+XL3hDOPmZi9QjOxXSA9uglA1KSuY=";
|
||||
|
||||
cargoHash = "sha256-wUBScLNRNAdDZ+HpQjYiExgPJnE9cxviooHePbJI13Q=";
|
||||
# Cargo.lock is outdated
|
||||
preConfigure = ''
|
||||
cargo metadata --offline
|
||||
'';
|
||||
|
||||
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;
|
||||
buildInputs = lib.optionals dbusSupport [ dbus ]
|
||||
@ -32,16 +35,12 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
buildFeatures = lib.optional notificationSupport "desktop-notifications";
|
||||
|
||||
checkFlags = [
|
||||
# flaky test
|
||||
"--skip=tests::config::parsing_tab_configs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A console IRC client";
|
||||
homepage = "https://github.com/osa1/tiny";
|
||||
changelog = "https://github.com/osa1/tiny/raw/v${version}/CHANGELOG.md";
|
||||
changelog = "https://github.com/osa1/tiny/blob/v${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ Br1ght0ne vyp ];
|
||||
mainProgram = "tiny";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user