blob: 502a165c33d44e1cb00551d1e0ac0ea4f6c0ad13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{ lib, 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 lib; {
description = "Bash on Ubuntu on macOS";
homepage = "https://github.com/linux-noah/noah";
license = [ licenses.mit licenses.gpl2Only ];
maintainers = [ ];
platforms = platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
};
}
|