noah: init at 0.5.1

This commit is contained in:
Mario Rodas 2019-06-12 21:30:00 -05:00
parent c3311fb38b
commit 7b2325622a
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, cmake, Hypervisor }:
stdenv.mkDerivation rec {
pname = "noah";
version = "0.5.1";
src = fetchFromGitHub {
owner = "linux-noah";
repo = pname;
rev = version;
sha256 = "0bivfsgb56kndz61lzjgdcnqlhjikqw89ma0h6f6radyvfzy0vis";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ Hypervisor ];
meta = with stdenv.lib; {
description = "Bash on Ubuntu on macOS";
homepage = "https://github.com/linux-noah/noah";
license = [ licenses.mit licenses.gpl2 ];
maintainers = [ maintainers.marsam ];
platforms = platforms.darwin;
};
}

View File

@ -15690,6 +15690,10 @@ in
nftables = callPackage ../os-specific/linux/nftables { };
noah = callPackage ../os-specific/darwin/noah {
inherit (darwin.apple_sdk.frameworks) Hypervisor;
};
numactl = callPackage ../os-specific/linux/numactl { };
numad = callPackage ../os-specific/linux/numad { };