pin docker

This commit is contained in:
2023-07-25 21:03:40 +02:00
parent fad7a9223d
commit e5d05c1a2d
3 changed files with 11 additions and 8 deletions

View File

@@ -1,5 +1,14 @@
let
pinnedPkgs = import(pkgs.fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs";
rev = "b6bbc53029a31f788ffed9ea2d459f0bb0f0fbfc";
sha256 = "sha256-JVFoTY3rs1uDHbh0llRb1BcTNx26fGSLSiPmjojT+KY=";
}) {};
in
self: super: {
bento = (super.callPackage ../pkgs/bento { });
howdy = (super.callPackage ../pkgs/howdy { });
linux-enable-ir-emitter = (super.callPackage ../pkgs/linux-enable-ir-emitter { });
docker = pinnedPkgs.docker;
}