mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 12:30:36 -05:00
13 lines
218 B
Nix
13 lines
218 B
Nix
{ docker-nixpkgs
|
|
, cachix
|
|
, nix
|
|
}:
|
|
(docker-nixpkgs.nix.override {
|
|
nix = nix;
|
|
extraContents = [ cachix ];
|
|
}).overrideAttrs (prev: {
|
|
meta = (prev.meta or { }) // {
|
|
description = "Nix and Cachix image";
|
|
};
|
|
})
|