nixpkgs/pkgs/development/libraries/toolbuslib/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

25 lines
535 B
Nix

{ stdenv
, fetchurl
, aterm
, pkgconfig
, w32api
}:
let
isMingw = stdenv ? cross && stdenv.cross.config == "i686-pc-mingw32" ;
in
stdenv.mkDerivation rec {
name = "toolbuslib-1.1";
src = fetchurl {
url = "http://www.meta-environment.org/releases/${name}.tar.gz";
sha256 = "0f4q0r177lih23ypypc8ckkyv5vhvnkhbrv25gswrqdif5dxbwr0";
};
patches = if isMingw then [./mingw.patch] else [];
buildInputs = [aterm] ++ (if isMingw then [w32api] else []);
nativeBuildInputs = [pkgconfig];
dontStrip = isMingw;
}