fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv
2, fetchurl
3, aterm
4, pkgconfig
5}:
6let
7 isMingw = stdenv ? cross && stdenv.cross.config == "i686-pc-mingw32" ;
8in
9stdenv.mkDerivation rec {
10 name = "c-library-1.2";
11
12 src = fetchurl {
13 url = "http://www.meta-environment.org/releases/${name}.tar.gz";
14 sha256 = "0rmhag2653nq76n1n49blii9zx0ph58szv1xzw1i551wmw7yrz88";
15 };
16
17 patches = if isMingw then [./mingw.patch] else [];
18
19 buildInputs = [aterm];
20 nativeBuildInputs = [pkgconfig];
21 dontStrip = isMingw;
22}