orpie: init at 1.5.2

[Bjørn: add meta.platforms]
This commit is contained in:
obadz 2015-09-26 14:52:18 +01:00 committed by Bjørn Forsman
parent 74a3f4b10a
commit db31c1c438
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, ocamlPackages, ncurses, gsl }:
stdenv.mkDerivation rec {
name = "orpie-${version}";
version = "1.5.2";
src = fetchurl {
url = "http://pessimization.com/software/orpie/${name}.tar.gz";
sha256 = "0v9xgpcf186ni55rkmx008msyszw0ypd6rd98hgwpih8yv3pymfy";
};
buildInputs = [ ncurses gsl ] ++ (with ocamlPackages; [ ocaml ]);
meta = {
homepage = http://pessimization.com/software/orpie/;
description = "A fullscreen RPN calculator for the console";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ obadz ];
};
}

View File

@ -12330,6 +12330,8 @@ let
opusTools = callPackage ../applications/audio/opus-tools { };
orpie = callPackage ../applications/misc/orpie { };
osmo = callPackage ../applications/office/osmo { };
pamixer = callPackage ../applications/audio/pamixer { };