mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
31 lines
700 B
Nix
31 lines
700 B
Nix
{ lib, fetchFromGitHub, ocamlPackages }:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "orpie";
|
|
version = "1.6.1";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pelzlpj";
|
|
repo = pname;
|
|
rev = "release-${version}";
|
|
sha256 = "1rx2nl6cdv609pfymnbq53pi3ql5fr4kda8x10ycd9xq2gc4f21g";
|
|
};
|
|
|
|
patches = [ ./prefix.patch ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace src/orpie/install.ml.in --replace '@prefix@' $out
|
|
'';
|
|
|
|
buildInputs = with ocamlPackages; [ curses camlp5 num gsl ];
|
|
|
|
meta = {
|
|
inherit (src.meta) homepage;
|
|
description = "A Curses-based RPN calculator";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ obadz ];
|
|
};
|
|
}
|