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

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