about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/qnial/default.nix
blob: 3b41e14be850bcc9ee72d0ad24628b43c1ba9494 (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
40
{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper, ncurses }:

stdenv.mkDerivation rec {
  pname = "qnial";
  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 = https://github.com/vrthra/qnial;
    license = stdenv.lib.licenses.artistic1;
    maintainers = [ stdenv.lib.maintainers.vrthra ];
    platforms = stdenv.lib.platforms.linux;
  };
}