lol
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, SDL }:
2
3stdenv.mkDerivation {
4 pname = "vix";
5 version = "0.1.2";
6
7 src = fetchFromGitHub {
8 owner = "BatchDrake";
9 repo = "vix";
10 rev = "824b6755157a0f7430a0be0af454487d1492204d";
11 sha256 = "1y0a2sajkrsg36px21b8lgx1irf0pyj7hccyd6k806bm4zhgxw1z";
12 };
13
14 nativeBuildInputs = [ autoreconfHook ];
15
16 buildInputs = [ SDL ];
17
18 meta = with lib; {
19 description = "Visual Interface heXadecimal dump ";
20 homepage = "http://actinid.org/vix/";
21 license = licenses.gpl3;
22 maintainers = [ maintainers.ehmry ];
23 };
24}