about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/netbsd/pkgs/uudecode.nix
blob: 1e58df16ceeec2cb282fe098e846e9d2ba45ec51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  lib,
  mkDerivation,
  stdenv,
}:

mkDerivation {
  path = "usr.bin/uudecode";
  env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isLinux "-DNO_BASE64";
  NIX_LDFLAGS = lib.optional stdenv.isDarwin "-lresolv";
}