mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 20:30:37 -05:00
15 lines
248 B
Nix
15 lines
248 B
Nix
_: pkgs: {
|
|
docker-nixpkgs = rec {
|
|
|
|
curl = pkgs.callPackage ./curl {};
|
|
|
|
nix = pkgs.callPackage ./nix {};
|
|
|
|
# docker images must be lower-cased
|
|
nix-unstable = nix.overrideAttrs (self: {
|
|
nix = pkgs.nixUnstable;
|
|
});
|
|
|
|
};
|
|
}
|