depot/third_party/nixpkgs/pkgs/applications/misc/ssocr/default.nix
Default email 2ce5db779a Project import generated by Copybara.
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
2022-05-18 16:49:53 +02:00

25 lines
629 B
Nix

{ lib, stdenv, fetchFromGitHub, imlib2, libX11, pkg-config }:
stdenv.mkDerivation rec {
pname = "ssocr";
version = "2.22.1";
src = fetchFromGitHub {
owner = "auerswal";
repo = "ssocr";
rev = "v${version}";
sha256 = "sha256-j1l1o1wtVQo+G9HfXZ1sJQ8amsUQhuYxFguWFQoRe/s=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ imlib2 libX11 ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Seven Segment Optical Character Recognition";
homepage = "https://github.com/auerswal/ssocr";
license = licenses.gpl3;
maintainers = [ maintainers.kroell ];
};
}