mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
f6c8802758
Diff: https://github.com/PaddiM8/kalker/compare/v2.0.0...v2.0.3 Changelog: https://github.com/PaddiM8/kalker/releases/tag/v2.0.3
50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, gmp
|
|
, mpfr
|
|
, libmpc
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kalker";
|
|
version = "2.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PaddiM8";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Pj3rcjEbUt+pnmbOZlv2JIvUhVdeiXYDKc5FED6qO7E=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
buildInputs = [ gmp mpfr libmpc ];
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
postPatch = ''
|
|
ln -s ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
|
|
postInstall = ''
|
|
moveToOutput "lib" "$lib"
|
|
'';
|
|
|
|
CARGO_FEATURE_USE_SYSTEM_LIBS = "1";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://kalker.strct.net";
|
|
changelog = "https://github.com/PaddiM8/kalker/releases/tag/v${version}";
|
|
description = "A command line calculator";
|
|
longDescription = ''
|
|
A command line calculator that supports math-like syntax with user-defined
|
|
variables, functions, derivation, integration, and complex numbers
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda lovesegfault ];
|
|
};
|
|
}
|