summary refs log tree commit diff
path: root/pkgs/applications/misc/ssocr/default.nix
blob: bb1655b44632f018554feacd06e0494d3feb64f5 (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
{ stdenv, fetchFromGitHub, imlib2, libX11 }:

stdenv.mkDerivation {
  pname = "ssocr";
  version = "unstable-2018-08-11";

  src = fetchFromGitHub {
    owner = "auerswal";
    repo = "ssocr";
    rev = "5e47e26b125a1a13bc79de93a5e87dd0b51354ca";
    sha256 = "0yzprwflky9a7zxa3zic7gvdwqg0zy49zvrqkdxng2k1ng78k3s7";
  };

  nativeBuildInputs = [ imlib2 libX11 ]; 

  installFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "Seven Segment Optical Character Recognition";
    homepage = https://github.com/auerswal/ssocr;
    license = licenses.gpl3;
    maintainers = [ maintainers.kroell ];
  };
}