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

30 lines
671 B
Nix
Raw Normal View History

2019-09-26 09:16:23 +01:00
{ stdenv, fetchFromGitHub }:
2020-12-27 17:40:08 +00:00
stdenv.mkDerivation rec {
pname = "clac";
2020-12-27 17:40:08 +00:00
version = "0.3.3";
src = fetchFromGitHub {
owner = "soveran";
repo = "clac";
2020-12-27 17:40:08 +00:00
rev = version;
sha256 = "rsag8MWl/udwXC0Gj864fAuQ6ts1gzrN2N/zelazqjE=";
};
2019-09-26 09:16:23 +01:00
makeFlags = [ "PREFIX=$(out)" ];
postInstall = ''
mkdir -p "$out/share/doc/${pname}"
cp README* LICENSE "$out/share/doc/${pname}"
'';
2020-12-27 17:40:08 +00:00
meta = with stdenv.lib; {
inherit version;
description = "Interactive stack-based calculator";
homepage = "https://github.com/soveran/clac";
2020-12-27 17:40:08 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}