nixpkgs-suyu/pkgs/tools/text/hck/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2021-09-19 17:38:41 +02:00
{ lib
2021-09-03 04:05:16 +02:00
, rustPlatform
2021-09-19 17:38:41 +02:00
, fetchFromGitHub
, cmake
2021-09-03 04:05:16 +02:00
, stdenv
, CoreFoundation
, Security
}:
2021-08-17 21:27:02 +02:00
rustPlatform.buildRustPackage rec {
pname = "hck";
2021-11-22 01:28:13 +01:00
version = "0.7.0";
2021-08-17 21:27:02 +02:00
src = fetchFromGitHub {
owner = "sstadick";
repo = pname;
rev = "v${version}";
2021-11-22 01:28:13 +01:00
sha256 = "sha256-BP1B1FlN+9qpkqv4WfT7OSyPCb7K47uxJQKXAW1Kkck=";
2021-08-17 21:27:02 +02:00
};
2021-11-22 01:28:13 +01:00
cargoSha256 = "sha256-Lp0VGt6z9mE8b9Fi6Fz3MjmHmbr9Az72D7BzOju9uOI=";
2021-09-03 04:05:16 +02:00
nativeBuildInputs = [ cmake ];
2021-11-15 18:26:09 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
2021-08-17 21:27:02 +02:00
2021-11-22 01:28:13 +01:00
# link System as a dylib instead of a framework on macos
postPatch = lib.optionalString stdenv.isDarwin ''
core_affinity=../$(stripHash $cargoDeps)/core_affinity
oldHash=$(sha256sum $core_affinity/src/lib.rs | cut -d " " -f 1)
substituteInPlace $core_affinity/src/lib.rs --replace framework dylib
substituteInPlace $core_affinity/.cargo-checksum.json \
--replace $oldHash $(sha256sum $core_affinity/src/lib.rs | cut -d " " -f 1)
'';
2021-08-17 21:27:02 +02:00
meta = with lib; {
description = "A close to drop in replacement for cut that can use a regex delimiter instead of a fixed string";
homepage = "https://github.com/sstadick/hck";
changelog = "https://github.com/sstadick/hck/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit /* or */ unlicense ];
maintainers = with maintainers; [ figsoda ];
};
}