summary refs log tree commit diff
path: root/pkgs/development/libraries/config-support/default.nix
blob: 72b1bea7b2035794f834a7ae6bc8b4547ff572f0 (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 = "config-support-1.4";

  src = fetchurl {
    url = "http://www.meta-environment.org/releases/${name}.tar.gz";
    sha256 = "0klhc7v760aklsy73pwn87snhgalkfxisac8srn8qcd3ljbfdrmi";
  };

  buildInputs = [aterm];
  buildNativeInputs = [pkgconfig];

  dontStrip = isMingw;
}