Merge pull request #41503 from holidaycheck/bat-darwin

bat: support darwin
wip/yesman
Matthew Justin Bauer 6 years ago committed by GitHub
commit 907d1dee67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      pkgs/tools/misc/bat/default.nix

@ -1,4 +1,4 @@
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib }:
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, libiconv, darwin }:
rustPlatform.buildRustPackage rec {
name = "bat-${version}";
@ -15,11 +15,15 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ cmake pkgconfig zlib ];
buildInputs = [ libiconv ] ++ stdenv.lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = https://github.com/sharkdp/bat;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
platforms = platforms.linux ++ platforms.darwin;
};
}

Loading…
Cancel
Save