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

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

31 lines
700 B
Nix
Raw Normal View History

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