summary refs log tree commit diff
path: root/pkgs/development/interpreters/qnial/default.nix
blob: 70f18740f686661f1515b1d9bd8d700671d9002d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 ];
  };
}