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

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

  buildInputs = [aterm toolbuslib];
  nativeBuildInputs = [pkgconfig];  

  dontStrip = isMingw;
}