Files
Fernando Rodrigues 3562403503 treewide: fetchFromGitea -> fetchFromCodeberg
Most packages that used fetchFromGitea fetch their sources from Codeberg, so might as well migrate them.

The following command was used for this treewide:
```fish
for i in (rg 'fetchFromGitea \{\n *domain = "codeberg.org";' --multiline --files-with-matches)
    sed -z 's/fetchFromGitea {\n *domain = "codeberg.org";/fetchFromCodeberg {/g' $i > $i.tmp && mv $i.tmp $i
    sed -i 's/fetchFromGitea/fetchFromCodeberg/g' $i
end
```

The following paths were manually edited:

* pkgs/by-name/xr/xrsh/package.nix
* pkgs/applications/networking/browsers/librewolf/src.nix
* pkgs/by-name/go/gotosocial/package.nix
* pkgs/by-name/ka/katawa-shoujo-re-engineered/package.nix

Co-authored-by: Gutyina Gergő <gutyina.gergo.2@gmail.com>
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2026-01-31 21:08:16 +11:00

55 lines
1.3 KiB
Nix

{
stdenv,
lib,
fetchFromCodeberg,
autoreconfHook,
pkg-config,
openssl,
readline,
fetchurl,
}:
let
iana-enterprise-numbers = fetchurl {
url = "https://web.archive.org/web/20250113140800id_/https://www.iana.org/assignments/enterprise-numbers.txt";
hash = "sha256-aRgBEfZYwoL6YnU3aD0WYeMnJD5ZCj34S/9aQyzBIO4=";
};
in
stdenv.mkDerivation {
pname = "ipmitool";
version = "1.8.19-unstable-2025-02-18";
src = fetchFromCodeberg {
owner = "IPMITool";
repo = "ipmitool";
rev = "3c91e6d91ec6090fe548c55ef301c33ff20c8ed8";
hash = "sha256-7R3jmPPd8+yKs7Q1vlU/ZaZusZVB0s+xc1HGeLyLdk0=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
openssl
readline
];
configureFlags = [ "--disable-registry-download" ];
postInstall = ''
# Install to path reported in configure as "Set IANA PEN dictionary search path to ..."
install -Dm444 ${iana-enterprise-numbers} $out/share/misc/enterprise-numbers
'';
meta = {
description = "Command-line interface to IPMI-enabled devices";
mainProgram = "ipmitool";
license = lib.licenses.bsd3;
homepage = "https://codeberg.org/IPMITool/ipmitool";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ fpletz ];
};
}