depot/third_party/nixpkgs/pkgs/os-specific/darwin/noah/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
600 B
Nix

{ 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;
};
}