wallust: 2.8.0 -> 2.9.0

Also remove `meta` attribute `platforms`, since it is set by `buildRustPackage`.
This commit is contained in:
Gustavo Coutinho de Souza 2023-12-26 09:06:39 -03:00
parent a07ba135b0
commit 22c832a9ba
No known key found for this signature in database
GPG key ID: 87B914AD813AA7C7

View file

@ -4,7 +4,7 @@
, nix-update-script , nix-update-script
}: }:
let let
version = "2.8.0"; version = "2.9.0";
in in
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
pname = "wallust"; pname = "wallust";
@ -15,14 +15,10 @@ rustPlatform.buildRustPackage {
owner = "explosion-mental"; owner = "explosion-mental";
repo = "wallust"; repo = "wallust";
rev = version; rev = version;
hash = "sha256-qX+pU/ovRV7dA35qSA724vV9azz7dMbEyMVBzqS47Ps="; hash = "sha256-AuZRt02bFr7GzI7qe4giGgjlXK/WX+gmF4+QwD0ChXk=";
}; };
cargoHash = "sha256-PAO7qxaKrRKYoC5RElNCylqRzOgvzPyxb6tTzW4jNi4="; cargoHash = "sha256-O9w18ae83mgF3zjk0WUMeu16Ap7CF2ubuPnOqeCt4Nw=";
# temporarily skip tests for args due to a string formatting conflict
# https://codeberg.org/explosion-mental/wallust/issues/30
cargoTestFlags = [ "--test config" "--test cache" "--test template" ];
passthru.updateScript = nix-update-script { }; passthru.updateScript = nix-update-script { };
@ -32,7 +28,6 @@ rustPlatform.buildRustPackage {
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onemoresuza iynaix ]; maintainers = with lib.maintainers; [ onemoresuza iynaix ];
downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}"; downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}";
platforms = lib.platforms.unix;
mainProgram = "wallust"; mainProgram = "wallust";
}; };
} }