1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #15709 from vrthra/qnial

qnial: Init at 6.3
This commit is contained in:
Frederik Rietdijk 2016-05-28 15:02:51 +02:00
commit fcbd211596
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper, ncurses }:
stdenv.mkDerivation rec {
name = "qnial-${version}";
version = "6.3";
src = fetchFromGitHub {
sha256 = "0426hb8w0wpkisvmf3danj656j6g7rc6v91gqbgzkcj485qjaliw";
rev = "cfe8720a4577d6413034faa2878295431bfe39f8";
repo = "qnial";
owner = "vrthra";
};
nativeBuildInputs = [ makeWrapper ];
preConfigure = ''
cd build;
'';
installPhase = ''
cd ..
mkdir -p $out/bin $out/lib
cp build/nial $out/bin/
cp -r niallib $out/lib/
'';
buildInputs = [
unzip
pkgconfig
ncurses
];
meta = {
description = "An array language from Nial Systems";
homepage = http://www.nial.com;
license = stdenv.lib.licenses.artistic1;
maintainers = [ stdenv.lib.maintainers.vrthra ];
};
}

View file

@ -3052,6 +3052,8 @@ in
sip = pythonPackages.sip_4_16;
};
qnial = callPackage ../development/interpreters/qnial {};
ocz-ssd-guru = callPackage ../tools/misc/ocz-ssd-guru { };
qalculate-gtk = callPackage ../applications/science/math/qalculate-gtk { };