nixpkgs/pkgs/applications/misc/orpie/default.nix

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

30 lines
719 B
Nix
Raw Normal View History

2020-10-07 07:57:19 +03:00
{ lib, fetchFromGitHub, ocamlPackages }:
2020-10-07 07:57:19 +03:00
ocamlPackages.buildDunePackage rec {
pname = "orpie";
2020-10-07 07:57:19 +03:00
version = "1.6.1";
2020-10-07 07:57:19 +03:00
src = fetchFromGitHub {
owner = "pelzlpj";
repo = pname;
rev = "release-${version}";
sha256 = "1rx2nl6cdv609pfymnbq53pi3ql5fr4kda8x10ycd9xq2gc4f21g";
};
2021-10-05 08:32:05 +03:00
patches = [ ./prefix.patch ];
2020-10-07 07:57:19 +03:00
preConfigure = ''
2021-10-05 08:32:05 +03:00
substituteInPlace src/orpie/install.ml.in --replace '@prefix@' $out
2020-10-07 07:57:19 +03:00
'';
nativeBuildInputs = [ ocamlPackages.camlp5 ];
buildInputs = with ocamlPackages; [ curses num gsl ];
meta = {
2020-10-07 07:57:19 +03:00
inherit (src.meta) homepage;
description = "Curses-based RPN calculator";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ obadz ];
};
}