mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
974 B
Nix
31 lines
974 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tftp-hpa";
|
|
version="5.2";
|
|
src = fetchurl {
|
|
url = "mirror://kernel/software/network/tftp/tftp-hpa/${pname}-${version}.tar.xz";
|
|
sha256 = "12vidchglhyc20znq5wdsbhi9mqg90jnl7qr9qs8hbvaz4fkdvmg";
|
|
};
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
# gcc-10. Otherwise build fails as:
|
|
# ld: main.o:/build/tftp-hpa-5.2/tftp/main.c:98: multiple definition of
|
|
# `toplevel'; tftp.o:/build/tftp-hpa-5.2/tftp/tftp.c:51: first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
meta = with lib; {
|
|
description = "TFTP tools - a lot of fixes on top of BSD TFTP";
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd3;
|
|
homepage = "https://www.kernel.org/pub/software/network/tftp/";
|
|
};
|
|
|
|
passthru = {
|
|
updateInfo = {
|
|
downloadPage = "https://www.kernel.org/pub/software/network/tftp/";
|
|
};
|
|
};
|
|
}
|