nix-snapshotter: init at 0.2.0

This commit is contained in:
Edgar Lee 2024-02-20 08:10:25 +08:00
parent 17875636a4
commit f3ea5cfa6e
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, buildGoModule
, callPackage
, fetchFromGitHub
}:
let
version = "0.2.0";
src = fetchFromGitHub {
owner = "pdtpartners";
repo = "nix-snapshotter";
rev = "v${version}";
hash = "sha256-hQ2b9Yx8g8okVWGo/iuvY2sR6FWI8iKp74m4gdXeueI=";
};
nix-snapshotter-lib = callPackage "${src}/package.nix" {};
in buildGoModule {
pname = "nix-snapshotter";
inherit version src;
vendorHash = "sha256-QBLePOnfsr6I19ddyZNSFDih6mCaZ/NV2Qz1B1pSHxs=";
passthru = { inherit (nix-snapshotter-lib) buildImage; };
meta = {
description = "Brings native understanding of Nix packages to containerd";
homepage = "https://github.com/pdtpartners/nix-snapshotter";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ elpdt852 ];
};
}