nixpkgs/pkgs/os-specific/darwin/noah/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
701 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, Hypervisor }:
2019-06-13 02:30:00 +00:00
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; {
2019-06-13 02:30:00 +00:00
description = "Bash on Ubuntu on macOS";
homepage = "https://github.com/linux-noah/noah";
license = [ licenses.mit licenses.gpl2 ];
2024-04-24 04:20:00 +00:00
maintainers = [ ];
2019-06-13 02:30:00 +00:00
platforms = platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
2019-06-13 02:30:00 +00:00
};
}