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

mkDerivation {
  path = "lib/libm";
  version = "9.2";
  sha256 = "1apwfr26shdmbqqnmg7hxf7bkfxw44ynqnnnghrww9bnhqdnsy92";
  SHLIBINSTALLDIR = "$(out)/lib";
  meta.platforms = lib.platforms.netbsd;
  extraPaths = [ sys.src ];
}