infra/nix/overlays/posh.nix

20 lines
448 B
Nix
Raw Normal View History

self: super:
let
2022-10-31 11:04:38 +01:00
nixpkgs-master = import <nixpkgs-master> { };
2019-12-13 20:50:33 +01:00
inherit (nixpkgs-master) crun;
crun_10_6_0 = crun.overrideAttrs (oldAttrs: rec {
version = "0.10.6";
src = super.fetchgit {
inherit (crun.src) url;
rev = version;
sha256 = "0v1hrlpnln0c976fb0k2ig4jv11qbyzf95z0wy92fd8r8in16rc1";
};
});
in {
inherit (nixpkgs-master) podman conmon slirp4netns;
2022-10-31 11:04:38 +01:00
posh = self.callPackage ../pkgs/posh.nix { };
}