mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
noah: init at 0.5.1
This commit is contained in:
parent
c3311fb38b
commit
7b2325622a
24
pkgs/os-specific/darwin/noah/default.nix
Normal file
24
pkgs/os-specific/darwin/noah/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user