mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
84 lines
1.6 KiB
Nix
84 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, autoconf
|
|
, automake
|
|
, bison
|
|
, ruby
|
|
, zlib
|
|
, readline
|
|
, libiconv
|
|
, libobjc
|
|
, libunwind
|
|
, libxcrypt
|
|
, libyaml
|
|
, Foundation
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rubyfmt";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fables-tales";
|
|
repo = "rubyfmt";
|
|
rev = "v${version}";
|
|
hash = "sha256-IIHPU6iwFwQ5cOAtOULpMSjexFtTelSd/LGLuazdmUo=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
bison
|
|
ruby
|
|
];
|
|
|
|
buildInputs = [
|
|
zlib
|
|
libxcrypt
|
|
libyaml
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
readline
|
|
libiconv
|
|
libobjc
|
|
libunwind
|
|
Foundation
|
|
Security
|
|
];
|
|
|
|
preConfigure = ''
|
|
pushd librubyfmt/ruby_checkout
|
|
autoreconf --install --force --verbose
|
|
./configure
|
|
popd
|
|
'';
|
|
|
|
cargoPatches = [
|
|
# Avoid checking whether ruby gitsubmodule is up-to-date.
|
|
./0002-remove-dependency-on-git.patch
|
|
];
|
|
|
|
cargoHash = "sha256-QZ26GmsKyENkzdCGg2peie/aJhEt7KQAF/lwsibonDk=";
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-fdeclspec";
|
|
|
|
preFixup = ''
|
|
mv $out/bin/rubyfmt{-main,}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Ruby autoformatter";
|
|
homepage = "https://github.com/fables-tales/rubyfmt";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
# = note: Undefined symbols for architecture x86_64:
|
|
# "_utimensat", referenced from:
|
|
# _utime_internal in librubyfmt-3c969812b3b27083.rlib(file.o)
|
|
broken = stdenv.isDarwin && stdenv.isx86_64;
|
|
mainProgram = "rubyfmt";
|
|
};
|
|
}
|