desed: 1.2.1-unstable-2024-09-06 -> 1.2.2 (#349799)

This commit is contained in:
lassulus 2024-10-19 19:51:44 +02:00 committed by GitHub
commit ba9222ea03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,24 +2,27 @@
lib, lib,
rustPlatform, rustPlatform,
fetchFromGitHub, fetchFromGitHub,
nix-update-script,
}: }:
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage rec {
pname = "desed"; pname = "desed";
version = "1.2.1-unstable-2024-09-06"; version = "1.2.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SoptikHa2"; owner = "SoptikHa2";
repo = "desed"; repo = "desed";
rev = "master"; rev = "refs/tags/v${version}";
hash = "sha256-iCpEfefXXognk4YI1LLb3mwgaqMw4m3haq/gdS1JbQU="; hash = "sha256-FL9w+XdClLBCRp+cLqDzTVj8j9LMUp8jZ6hiG4KvIds=";
}; };
cargoHash = "sha256-z2qv394C0GhQC21HuLyvlNjrM65KFEZh1XLj+Y/B9ZM="; cargoHash = "sha256-inH8fUpUR0WXYY2JX72evZqVp3GlnGKBBlrbai/fU6U=";
passthru.updateScript = nix-update-script { };
meta = { meta = {
changelog = "https://github.com/SoptikHa2/desed/releases/tag/v1.2.1"; changelog = "https://github.com/SoptikHa2/desed/releases/tag/v${version}";
description = "Debugger for Sed: demystify and debug your sed scripts, from comfort of your terminal. "; description = "Debugger for Sed: demystify and debug your sed scripts, from comfort of your terminal";
homepage = "https://github.com/SoptikHa2/desed"; homepage = "https://github.com/SoptikHa2/desed";
license = lib.licenses.gpl3Only; license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ vinylen ]; maintainers = with lib.maintainers; [ vinylen ];