sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / tools / misc / vix / default.nix
blob9e759536d74cede27e0910ad089f8bbea156c339
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, SDL }:
3 stdenv.mkDerivation {
4   pname = "vix";
5   version = "0.1.2";
7   src = fetchFromGitHub {
8     owner = "BatchDrake";
9     repo = "vix";
10     rev = "824b6755157a0f7430a0be0af454487d1492204d";
11     sha256 = "1y0a2sajkrsg36px21b8lgx1irf0pyj7hccyd6k806bm4zhgxw1z";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   buildInputs = [ SDL ];
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     mainProgram = "vix";
24   };