ssocr: init at 2018-08-11

This commit is contained in:
rokk4
2018-09-24 20:10:51 +02:00
parent 2da6f215d3
commit c160745a7b
3 changed files with 31 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, imlib2, libX11 }:
stdenv.mkDerivation rec {
name = "ssocr-${version}";
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 ];
};
}