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

12 lines
347 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 lib gd pkg-config; };
2017-08-17 23:54:26 -04:00
graphvizCore = import ./graphviz.nix {
inherit mkDerivation lib gd pkg-config;
2017-08-17 23:54:26 -04:00
gdSupport = false;
};
}