mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
27 lines
705 B
Nix
27 lines
705 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.gpl2Only ];
|
|
maintainers = [ ];
|
|
platforms = platforms.darwin;
|
|
# never built on aarch64-darwin since first introduction in nixpkgs
|
|
broken = stdenv.isDarwin && stdenv.isAarch64;
|
|
};
|
|
}
|