summary refs log tree commit diff
path: root/pkgs/development/compilers/meta-environment/meta-build-env/default.nix
blob: 3869bdad84f60e95674c30f4251561858435c57f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "meta-build-env-0.1";
  src = fetchurl {
    url = http://www.meta-environment.org/releases/meta-build-env-0.1.tar.gz ;
    sha256 = "1imn1gaan4fv73v8w3k3lgyjzkcn7bdp69k6hlz0vqdg17ysd1x3";
  };

  meta = {
    platforms = stdenv.lib.platforms.unix;
  };
}