mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
orpie: init at 1.5.2
[Bjørn: add meta.platforms]
This commit is contained in:
parent
74a3f4b10a
commit
db31c1c438
21
pkgs/applications/misc/orpie/default.nix
Normal file
21
pkgs/applications/misc/orpie/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user