about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/ibniz/default.nix
blob: a74267846c1d68ddd3f4675395934cc1fd7791de (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
{ lib, stdenv, fetchurl, SDL }:

stdenv.mkDerivation rec {
  pname = "ibniz";
  version = "1.18";

  src = fetchurl {
    url = "http://www.pelulamu.net/ibniz/${pname}-${version}.tar.gz";
    sha256 = "10b4dka8zx7y84m1a58z9j2vly8mz9aw9wn8z9vx9av739j95wp2";
  };

  buildInputs = [ SDL ];

  installPhase = ''
    mkdir -p $out/bin
    cp ibniz $out/bin
  '';

  meta = with lib; {
    description = "Virtual machine designed for extremely compact low-level audiovisual programs";
    homepage = "https://github.com/viznut/IBNIZ";
    license = licenses.zlib;
    platforms = platforms.linux;
    maintainers = [ maintainers.dezgeg ];
  };
}