about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/netbsd/pkgs/uudecode.nix
blob: dac9674f9d6f3e0053d4e48d2fb0e912e1078e39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ 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";
}