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

29 lines
728 B
Nix
Raw Normal View History

2019-09-26 11:16:23 +03:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "clac";
2017-06-29 05:44:42 +03:00
version = "0.0.0.20170503";
src = fetchFromGitHub {
owner = "soveran";
repo = "clac";
2017-06-29 05:44:42 +03:00
rev = "e92bd5cbab0d694cef945e3478820c9505e06f04";
sha256 = "0j8p1npgq32s377c9lw959h5i2csq4yb27cvg7av17bji46816bv";
};
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 = {
inherit version;
description = "Interactive stack-based calculator";
license = stdenv.lib.licenses.bsd2;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.unix;
homepage = https://github.com/soveran/clac;
};
}