summary refs log tree commit diff
path: root/pkgs/development/libraries/c-library/default.nix
blob: 714e8b66089cbe19feba1ff046e2d4563305bfd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, fetchurl
, aterm
, pkgconfig
}:
let 
  isMingw = stdenv ? cross && stdenv.cross.config == "i686-pc-mingw32" ;
in
stdenv.mkDerivation rec {
  name = "c-library-1.2";

  src = fetchurl {
    url = "http://www.meta-environment.org/releases/${name}.tar.gz";
    sha256 = "0rmhag2653nq76n1n49blii9zx0ph58szv1xzw1i551wmw7yrz88";
  };
  
  patches = if isMingw then [./mingw.patch] else [];
  
  buildInputs = [aterm];
  nativeBuildInputs = [pkgconfig];
  dontStrip = isMingw;
}