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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
729 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2020-12-27 20:40:08 +03:00
stdenv.mkDerivation rec {
pname = "clac";
version = "0.3.3-unstable-2021-09-06";
src = fetchFromGitHub {
owner = "soveran";
repo = "clac";
rev = "beae8c4bc89912f4cd66bb875585fa471692cd54";
sha256 = "XaULDkFF9OZW7Hbh60wbGgvCJ6L+3gZNGQ9uQv3G0zU=";
};
2019-09-26 11:16:23 +03:00
makeFlags = [ "PREFIX=$(out)" ];
postInstall = ''
mkdir -p "$out/share/doc/${pname}"
cp README* LICENSE "$out/share/doc/${pname}"
'';
meta = with lib; {
description = "Interactive stack-based calculator";
homepage = "https://github.com/soveran/clac";
2020-12-27 20:40:08 +03:00
license = licenses.bsd2;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
2023-11-27 04:17:53 +03:00
mainProgram = "clac";
};
}