mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitea
|
|
, curl
|
|
, openssl
|
|
, nix-update-script
|
|
, testers
|
|
, snac2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snac2";
|
|
version = "2.59";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "grunfink";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-CIn+/LC6z+2lnU8w3EzrBIBg94J9OnCxME2mZW65OwE=";
|
|
};
|
|
|
|
buildInputs = [ curl openssl ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-Dst_mtim=st_mtimespec"
|
|
"-Dst_ctim=st_ctimespec"
|
|
]);
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = snac2;
|
|
command = "${meta.mainProgram} || true";
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://codeberg.org/grunfink/snac2";
|
|
description = "Simple, minimalistic ActivityPub instance (2.x, C)";
|
|
changelog = "https://codeberg.org/grunfink/snac2/src/tag/${version}/RELEASE_NOTES.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ misuzu ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "snac";
|
|
};
|
|
}
|