nix-env -iA nixpkgs.netcat
doesn't seem to install the nc
output
netcat
is just set to libressl.nc
they are indeed the same derivation; these print out the same thing:
nix eval "(import <nixpkgs> {}).libressl.drvPath"
nix eval "(import <nixpkgs> {}).netcat.drvPath"
outputName
is, however, different, as expected
the peculiar bit is that nix build
(i.e. nix build '' -A netcat
) will build and emit the nc
output