From e2dec02c09ecab40953e0225c80eed433b960560 Mon Sep 17 00:00:00 2001 From: Gustavo Coutinho de Souza Date: Fri, 2 Feb 2024 22:44:14 -0300 Subject: [PATCH] hareThirdParty.hare-toml: 0.1.0 -> 0.1.0-unstable-2023-12-27 --- .../hare-third-party/hare-toml/default.nix | 22 +++---------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/pkgs/development/hare-third-party/hare-toml/default.nix b/pkgs/development/hare-third-party/hare-toml/default.nix index 98cc670ef941..39a387605652 100644 --- a/pkgs/development/hare-third-party/hare-toml/default.nix +++ b/pkgs/development/hare-third-party/hare-toml/default.nix @@ -3,36 +3,20 @@ , scdoc , lib , fetchFromGitea -, fetchpatch , nix-update-script }: stdenv.mkDerivation (finalAttrs: { pname = "hare-toml"; - version = "0.1.0"; + version = "0.1.0-unstable-2023-12-27"; src = fetchFromGitea { domain = "codeberg.org"; owner = "lunacb"; repo = "hare-toml"; - rev = "v${finalAttrs.version}"; - hash = "sha256-JKK5CcDmAW7FH7AzFwgsr9i13eRSXDUokWfZix7f4yY="; + rev = "022d0a8d59e5518029f72724a46e6133b934774c"; + hash = "sha256-DsVcbh1zn8GNKzzb+1o6bfgiVigrxHw/5Xm3uuUhRy0="; }; - patches = [ - # Remove `abort()` calls from never returning expressions. - (fetchpatch { - name = "remove-abort-from-never-returning-expressions.patch"; - url = "https://codeberg.org/lunacb/hare-toml/commit/f26e7cdfdccd2e82c9fce7e9fca8644b825b40f1.patch"; - hash = "sha256-DFbrxiaV4lQlFmMzo5GbMubIQ4hU3lXgsJqoyeFWf2g="; - }) - # Fix make's install target to install the correct files - (fetchpatch { - name = "install-correct-files-with-install-target.patch"; - url = "https://codeberg.org/lunacb/hare-toml/commit/b79021911fe7025a8f5ddd97deb2c4d18c67b25e.patch"; - hash = "sha256-IL+faumX6BmdyePXTzsSGgUlgDBqOXXzShupVAa7jlQ="; - }) - ]; - nativeBuildInputs = [ scdoc hare