summary refs log tree commit diff
path: root/pkgs/development/libraries/sglr/default.nix
blob: f6c14eae464d79c6c8748207a333ac1f0832e95b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, fetchurl
, aterm
, toolbuslib
, cLibrary
, configSupport
, ptSupport
, ptableSupport
, errorSupport 
, pkgconfig
}:
let 
  isMingw = stdenv ? cross && stdenv.cross.config == "i686-pc-mingw32" ;
in    
stdenv.mkDerivation rec {
  name = "sglr-4.5.3";

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

  buildInputs = [aterm toolbuslib cLibrary configSupport ptSupport ptableSupport errorSupport];
  nativeBuildInputs = [pkgconfig];  

  dontStrip = isMingw;
}