depot/third_party/nixpkgs/pkgs/os-specific/darwin/noah/default.nix
Default email a66bca1520 Project import generated by Copybara.
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
2022-12-17 11:02:37 +01:00

26 lines
720 B
Nix

{ 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.gpl2 ];
maintainers = [ maintainers.marsam ];
platforms = platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
};
}