mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
30 lines
719 B
Nix
30 lines
719 B
Nix
{ lib, fetchFromGitHub, ocamlPackages }:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "orpie";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pelzlpj";
|
|
repo = pname;
|
|
rev = "release-${version}";
|
|
sha256 = "1rx2nl6cdv609pfymnbq53pi3ql5fr4kda8x10ycd9xq2gc4f21g";
|
|
};
|
|
|
|
patches = [ ./prefix.patch ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace src/orpie/install.ml.in --replace '@prefix@' $out
|
|
'';
|
|
|
|
nativeBuildInputs = [ ocamlPackages.camlp5 ];
|
|
buildInputs = with ocamlPackages; [ curses num gsl ];
|
|
|
|
meta = {
|
|
inherit (src.meta) homepage;
|
|
description = "Curses-based RPN calculator";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ obadz ];
|
|
};
|
|
}
|