Merge pull request #270248 from dotlambda/diebahn-2.1.0

diebahn: 1.5.0 -> 2.1.0
This commit is contained in:
Robert Schütz 2023-11-26 22:55:11 -08:00 committed by GitHub
commit 0a9ae18d56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1924 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,20 +21,19 @@
stdenv.mkDerivation rec {
pname = "diebahn";
version = "1.5.0";
version = "2.1.0";
src = fetchFromGitLab {
owner = "schmiddi-on-mobile";
repo = "diebahn";
rev = version;
hash = "sha256-WEjMtRXRmcbgCIQNJRlGYGQhem9W8nb/lsjft0oWxAk=";
hash = "sha256-IKQaCdUpLbZwySpaywGbbLtBGljNR+ltQkbCcJwQ/K4=";
};
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"hafas-rs-0.1.0" = "sha256-9YmWiief8Nux1ZkPTZjzer/qKAa5hORVn8HngMtKDxM=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
name = "${pname}-${src}";
inherit src;
hash = "sha256-FlXAWMHrWnYXIWuG0wXDkxiJfNHlZmJFkYRfOxzIg1g=";
};
nativeBuildInputs = [
@ -70,7 +69,8 @@ stdenv.mkDerivation rec {
};
meta = {
description = "GTK4 frontend for the travel information of the german railway";
changelog = "https://gitlab.com/schmiddi-on-mobile/railway/-/blob/${src.rev}/CHANGELOG.md";
description = "Travel with all your train information in one place";
homepage = "https://gitlab.com/schmiddi-on-mobile/diebahn";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];