nix-ld 1.1.0 -> 1.2.0 https://github.com/mic92/nix-ld/releases attrpath: nix-ld Checking auto update branch... No auto update branch exists Old version 1.1.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , meson , ninja , nixosTests }: let libDir = if builtins.elem stdenv.system [ "x86_64-linux" "mips64-linux" "powerpc64le-linux" ] then "/lib64" else "/lib"; in stdenv.mkDerivation rec { pname = "nix-ld"; version = "1.2.1"; src = fetchFromGitHub { owner = "mic92"; repo = "nix-ld"; rev = version; sha256 = "sha256-NitUt9LBJMpAbbKC98aRPYMfxZFq3PHH6ieqM4MVO08="; }; doCheck = true; nativeBuildInputs = [ meson ninja ]; mesonFlags = [ "-Dnix-system=${stdenv.system}" ]; hardeningDisable = [ "stackprotector" ]; postInstall = '' mkdir -p $out/nix-support ldpath=${libDir}/$(basename $(< ${stdenv.cc}/nix-support/dynamic-linker)) echo "$ldpath" > $out/nix-support/ldpath mkdir -p $out/lib/tmpfiles.d/ cat > $out/lib/tmpfiles.d/nix-ld.conf <