nixpkgs/pkgs/tools/misc/quich/default.nix

31 lines
806 B
Nix
Raw Normal View History

2021-04-01 23:46:14 +02:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "quich";
2021-08-17 18:47:25 +02:00
version = "4.0.0";
2021-04-01 23:46:14 +02:00
src = fetchFromGitHub {
owner = "Usbac";
repo = pname;
rev = "v${version}";
2021-08-17 18:47:25 +02:00
sha256 = "sha256-4gsSjLZ7Z4ErNqe86Fy5IrzLMfvDyY18sE0yBnj9bvM=";
2021-04-01 23:46:14 +02:00
};
doCheck = true;
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ];
meta = with lib; {
description = "The advanced terminal calculator";
longDescription = ''
Quich is a compact, fast, powerful and useful calculator for your terminal
with numerous features, supporting Windows and Linux Systems,
written in ANSI C.
'';
homepage = "https://github.com/Usbac/quich";
license = licenses.mit;
maintainers = [ maintainers.xdhampus ];
platforms = platforms.all;
};
}