1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-20 04:10:12 -04:00
nix-pills/pills/12/repository-mkderivation.txt

12 lines
368 B
Plaintext
Raw Normal View History

2017-08-17 23:54:26 -04:00
let
pkgs = import <nixpkgs> {};
mkDerivation = import ./autotools.nix pkgs;
in with pkgs; {
hello = import ./hello.nix { inherit mkDerivation; };
graphviz = import ./graphviz.nix { inherit mkDerivation gd fontconfig libjpeg bzip2; };
graphvizCore = import ./graphviz.nix {
inherit mkDerivation gd fontconfig libjpeg bzip2;
gdSupport = false;
};
}