treewide: freebsd13 -> freebsd

Co-authored-by: Alyssa Ross <hi@alyssa.is>

+9 -13
+1 -1
lib/systems/doubles.nix
··· 13 "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" 14 15 # FreeBSD 16 - "i686-freebsd13" "x86_64-freebsd13" 17 18 # Genode 19 "aarch64-genode" "i686-genode" "x86_64-genode"
··· 13 "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" 14 15 # FreeBSD 16 + "i686-freebsd" "x86_64-freebsd" 17 18 # Genode 19 "aarch64-genode" "i686-genode" "x86_64-genode"
+1 -1
lib/systems/examples.nix
··· 328 # BSDs 329 330 x86_64-freebsd = { 331 - config = "x86_64-unknown-freebsd13"; 332 useLLVM = true; 333 }; 334
··· 328 # BSDs 329 330 x86_64-freebsd = { 331 + config = "x86_64-unknown-freebsd"; 332 useLLVM = true; 333 }; 334
+1 -5
lib/systems/parse.nix
··· 326 # the normalized name for macOS. 327 macos = { execFormat = macho; families = { inherit darwin; }; name = "darwin"; }; 328 ios = { execFormat = macho; families = { inherit darwin; }; }; 329 - # A tricky thing about FreeBSD is that there is no stable ABI across 330 - # versions. That means that putting in the version as part of the 331 - # config string is paramount. 332 - freebsd12 = { execFormat = elf; families = { inherit bsd; }; name = "freebsd"; version = 12; }; 333 - freebsd13 = { execFormat = elf; families = { inherit bsd; }; name = "freebsd"; version = 13; }; 334 linux = { execFormat = elf; families = { }; }; 335 netbsd = { execFormat = elf; families = { inherit bsd; }; }; 336 none = { execFormat = unknown; families = { }; };
··· 326 # the normalized name for macOS. 327 macos = { execFormat = macho; families = { inherit darwin; }; name = "darwin"; }; 328 ios = { execFormat = macho; families = { inherit darwin; }; }; 329 + freebsd = { execFormat = elf; families = { inherit bsd; }; name = "freebsd"; }; 330 linux = { execFormat = elf; families = { }; }; 331 netbsd = { execFormat = elf; families = { inherit bsd; }; }; 332 none = { execFormat = unknown; families = { }; };
+3 -3
lib/tests/systems.nix
··· 40 41 testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv6l-netbsd" "armv6l-none" "armv7a-linux" "armv7a-netbsd" "armv7l-linux" "armv7l-netbsd" "arm-none" "armv7a-darwin" ]; 42 testarmv7 = mseteq armv7 [ "armv7a-darwin" "armv7a-linux" "armv7l-linux" "armv7a-netbsd" "armv7l-netbsd" ]; 43 - testi686 = mseteq i686 [ "i686-linux" "i686-freebsd13" "i686-genode" "i686-netbsd" "i686-openbsd" "i686-cygwin" "i686-windows" "i686-none" "i686-darwin" ]; 44 testmips = mseteq mips [ "mips-none" "mips64-none" "mips-linux" "mips64-linux" "mips64el-linux" "mipsel-linux" "mipsel-netbsd" ]; 45 testmmix = mseteq mmix [ "mmix-mmixware" ]; 46 testpower = mseteq power [ "powerpc-netbsd" "powerpc-none" "powerpc64-linux" "powerpc64le-linux" "powerpcle-none" ]; ··· 48 testriscv32 = mseteq riscv32 [ "riscv32-linux" "riscv32-netbsd" "riscv32-none" ]; 49 testriscv64 = mseteq riscv64 [ "riscv64-linux" "riscv64-netbsd" "riscv64-none" ]; 50 tests390x = mseteq s390x [ "s390x-linux" "s390x-none" ]; 51 - testx86_64 = mseteq x86_64 [ "x86_64-linux" "x86_64-darwin" "x86_64-freebsd13" "x86_64-genode" "x86_64-redox" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin" "x86_64-solaris" "x86_64-windows" "x86_64-none" ]; 52 53 testcygwin = mseteq cygwin [ "i686-cygwin" "x86_64-cygwin" ]; 54 testdarwin = mseteq darwin [ "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" ]; 55 - testfreebsd = mseteq freebsd [ "i686-freebsd13" "x86_64-freebsd13" ]; 56 testgenode = mseteq genode [ "aarch64-genode" "i686-genode" "x86_64-genode" ]; 57 testredox = mseteq redox [ "x86_64-redox" ]; 58 testgnu = mseteq gnu (linux /* ++ kfreebsd ++ ... */);
··· 40 41 testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv6l-netbsd" "armv6l-none" "armv7a-linux" "armv7a-netbsd" "armv7l-linux" "armv7l-netbsd" "arm-none" "armv7a-darwin" ]; 42 testarmv7 = mseteq armv7 [ "armv7a-darwin" "armv7a-linux" "armv7l-linux" "armv7a-netbsd" "armv7l-netbsd" ]; 43 + testi686 = mseteq i686 [ "i686-linux" "i686-freebsd" "i686-genode" "i686-netbsd" "i686-openbsd" "i686-cygwin" "i686-windows" "i686-none" "i686-darwin" ]; 44 testmips = mseteq mips [ "mips-none" "mips64-none" "mips-linux" "mips64-linux" "mips64el-linux" "mipsel-linux" "mipsel-netbsd" ]; 45 testmmix = mseteq mmix [ "mmix-mmixware" ]; 46 testpower = mseteq power [ "powerpc-netbsd" "powerpc-none" "powerpc64-linux" "powerpc64le-linux" "powerpcle-none" ]; ··· 48 testriscv32 = mseteq riscv32 [ "riscv32-linux" "riscv32-netbsd" "riscv32-none" ]; 49 testriscv64 = mseteq riscv64 [ "riscv64-linux" "riscv64-netbsd" "riscv64-none" ]; 50 tests390x = mseteq s390x [ "s390x-linux" "s390x-none" ]; 51 + testx86_64 = mseteq x86_64 [ "x86_64-linux" "x86_64-darwin" "x86_64-freebsd" "x86_64-genode" "x86_64-redox" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin" "x86_64-solaris" "x86_64-windows" "x86_64-none" ]; 52 53 testcygwin = mseteq cygwin [ "i686-cygwin" "x86_64-cygwin" ]; 54 testdarwin = mseteq darwin [ "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" ]; 55 + testfreebsd = mseteq freebsd [ "i686-freebsd" "x86_64-freebsd" ]; 56 testgenode = mseteq genode [ "aarch64-genode" "i686-genode" "x86_64-genode" ]; 57 testredox = mseteq redox [ "x86_64-redox" ]; 58 testgnu = mseteq gnu (linux /* ++ kfreebsd ++ ... */);
+1 -1
pkgs/development/compilers/rust/rustc.nix
··· 274 # Platforms with host tools from 275 # https://doc.rust-lang.org/nightly/rustc/platform-support.html 276 "x86_64-darwin" "i686-darwin" "aarch64-darwin" 277 - "i686-freebsd13" "x86_64-freebsd13" 278 "x86_64-solaris" 279 "aarch64-linux" "armv6l-linux" "armv7l-linux" "i686-linux" 280 "loongarch64-linux" "powerpc64-linux" "powerpc64le-linux"
··· 274 # Platforms with host tools from 275 # https://doc.rust-lang.org/nightly/rustc/platform-support.html 276 "x86_64-darwin" "i686-darwin" "aarch64-darwin" 277 + "i686-freebsd" "x86_64-freebsd" 278 "x86_64-solaris" 279 "aarch64-linux" "armv6l-linux" "armv7l-linux" "i686-linux" 280 "loongarch64-linux" "powerpc64-linux" "powerpc64le-linux"
+1 -1
pkgs/development/interpreters/ngn-k/default.nix
··· 65 homepage = "https://codeberg.org/ngn/k"; 66 license = lib.licenses.agpl3Only; 67 maintainers = [ lib.maintainers.sternenseemann ]; 68 - platforms = [ "x86_64-linux" "x86_64-freebsd13" ]; 69 }; 70 }
··· 65 homepage = "https://codeberg.org/ngn/k"; 66 license = lib.licenses.agpl3Only; 67 maintainers = [ lib.maintainers.sternenseemann ]; 68 + platforms = [ "x86_64-linux" "x86_64-freebsd" ]; 69 }; 70 }
+1 -1
pkgs/development/libraries/libunwind/default.nix
··· 50 description = "A portable and efficient API to determine the call-chain of a program"; 51 maintainers = with maintainers; [ orivej ]; 52 # https://github.com/libunwind/libunwind#libunwind 53 - platforms = [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-freebsd13" "i686-linux" "loongarch64-linux" "mips64el-linux" "mipsel-linux" "powerpc64-linux" "powerpc64le-linux" "riscv64-linux" "s390x-linux" "x86_64-freebsd13" "x86_64-linux" "x86_64-solaris" ]; 54 license = licenses.mit; 55 }; 56 }
··· 50 description = "A portable and efficient API to determine the call-chain of a program"; 51 maintainers = with maintainers; [ orivej ]; 52 # https://github.com/libunwind/libunwind#libunwind 53 + platforms = [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-freebsd" "i686-linux" "loongarch64-linux" "mips64el-linux" "mipsel-linux" "powerpc64-linux" "powerpc64le-linux" "riscv64-linux" "s390x-linux" "x86_64-freebsd" "x86_64-linux" "x86_64-solaris" ]; 54 license = licenses.mit; 55 }; 56 }