fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation (finalAttrs: {
8 pname = "meta-build-env";
9 version = "0.1";
10
11 src = fetchurl {
12 url = "http://www.meta-environment.org/releases/meta-build-env-${finalAttrs.version}.tar.gz";
13 sha256 = "1imn1gaan4fv73v8w3k3lgyjzkcn7bdp69k6hlz0vqdg17ysd1x3";
14 };
15
16 meta = {
17 platforms = lib.platforms.unix;
18 };
19})