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

30 lines
669 B
Nix
Raw Normal View History

{ lib, 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 08:16:23 +00:00
makeFlags = [ "PREFIX=$(out)" ];
postInstall = ''
mkdir -p "$out/share/doc/${pname}"
cp README* LICENSE "$out/share/doc/${pname}"
'';
meta = with 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;
};
}