@@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -15714,6 +15714,10 @@ in
|
|||||||
|
|
||||||
nftables = callPackage ../os-specific/linux/nftables { };
|
nftables = callPackage ../os-specific/linux/nftables { };
|
||||||
|
|
||||||
|
noah = callPackage ../os-specific/darwin/noah {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Hypervisor;
|
||||||
|
};
|
||||||
|
|
||||||
numactl = callPackage ../os-specific/linux/numactl { };
|
numactl = callPackage ../os-specific/linux/numactl { };
|
||||||
|
|
||||||
numad = callPackage ../os-specific/linux/numad { };
|
numad = callPackage ../os-specific/linux/numad { };
|
||||||
|
|||||||
Reference in New Issue
Block a user