summary refs log tree commit diff
path: root/pkgs/development/libraries/ptable-support/default.nix
blob: 357d288c73207a16028bf6717a17686ad40e6602 (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
, ptSupport
, pkgconfig
}:
let 
  isMingw = stdenv ? cross && stdenv.cross.config == "i686-pc-mingw32" ;
in
stdenv.mkDerivation rec {
  name = "ptable-support-1.2";

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

  buildInputs = [aterm ptSupport];
  nativeBuildInputs = [pkgconfig];
  
  dontStrip = isMingw;
}