1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-14 22:42:41 +01:00
nix/lib/default.nix
2004-07-06 11:43:37 +00:00

17 lines
320 B
Nix

rec {
inherit (import /home/eelco/nixpkgs/pkgs/system/i686-linux.nix) stdenv;
compileC = {main}: stdenv.mkDerivation {
name = "compile-c";
builder = ./compile-c.sh;
inherit main;
};
link = {objects}: stdenv.mkDerivation {
name = "link";
builder = ./link.sh;
inherit objects;
};
}