nixpkgs/pkgs/by-name/nu/nuv/tests.nix
d4rkstar 38649d6536 nuv: init at 3.0.1-beta.2405292059
{
    "blacklisted": [],
    "broken": [],
    "built": [
        "nuv"
    ],
    "extra-nixpkgs-config": null,
    "failed": [],
    "non-existent": [],
    "pr": 316731,
    "system": "x86_64-linux",
    "tests": []
}
2024-06-18 21:05:53 +02:00

18 lines
443 B
Nix

{ runCommand, nuv, version }:
runCommand "nuv-test-run"
{
nativeBuildInputs = [ nuv ];
} ''
export TMP_BASE=$(mktemp -d /tmp/.nuv-XXXXX)
export HOME=$TMP_BASE
export NUV_REPO=""
export NUV_ROOT=$TMP_BASE/.nuv/3.0.0/olaris
rm -rf $TMP_BASE/.nuv && \
mkdir -p $TMP_BASE/.nuv/3.0.0/olaris && \
mkdir $TMP_BASE/.nuv/tmp
V=$(nuv -version 2>/dev/null)
diff -U3 --color=auto <(echo "$V") <(echo "${version}")
touch $out
''