Skip to content

Commit

Permalink
adding bima and urunc
Browse files Browse the repository at this point in the history
  • Loading branch information
Meandres committed May 28, 2024
1 parent 3f3fb24 commit 1aa85e5
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
3 changes: 2 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ rec {
inherit pkgs;

example-package = pkgs.callPackage ./pkgs/example-package { };
#og_linux_6_5 = pkgs.callPackage ./pkgs/linux_6_5 { };
vmcache = pkgs.callPackage ./pkgs/vmcache { };
exmap = pkgs.callPackage ./pkgs/exmap { };
urunc = pkgs.callPackage ./pkgs/urunc {};
bima = pkgs.callPackage ./pkgs/bima {};
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
# ...
}
20 changes: 20 additions & 0 deletions pkgs/bima/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ lib, fetchgit, buildGoModule }:

buildGoModule rec {
name = "bima-${version}";
version = "0.1";
src = fetchgit{
url = "https://github.com/nubificus/bima.git";
rev = "8b81c9d3c2816caa80ee96fb846047369260527c";
hash = "sha256-M133oiAPP+7HIIvGDazIr33lzRMLNbz6HyD5zmevc2k=";
};

vendorHash = "sha256-rhE7Xhqud71TZFUy0GXPmVpBKXcw6MXk+z5yZ5nn1x0=";

meta = with lib; {
homepage = https://github.com/nubificus/bima;
description = "bima: OCI image builder for non-container software ";
license = licenses.asl20;
broken = false;
};
}
21 changes: 21 additions & 0 deletions pkgs/urunc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ lib, fetchgit, buildGoModule }:

buildGoModule rec {
name = "urunc-${version}";
version = "0.2.0";
src = fetchgit{
url = "https://github.com/nubificus/urunc.git";
rev = "b897d271d43185bdf9164bf570d16cbc1b2110df";
hash = "sha256-ONHOcmQw5+ksqpMh3dcSkemPt32AGdrr3dCAiiYghh4=";
};

doCheck = false;
vendorHash = "sha256-yucUMVVmDmeR4k7UQ3RZuYV3Lg9YNT+jdt+k0dIcr9s=";

meta = with lib; {
homepage = https://github.com/nubificus/urunc;
description = "a simple container runtime that aspires to become `runc` for unikernels";
license = licenses.asl20;
broken = false;
};
}

0 comments on commit 1aa85e5

Please sign in to comment.