legcord: 1.0.6 -> 1.0.8 (#377219)
[NixPkgs.git] / pkgs / by-name / ai / airscan / package.nix
blobfe1027fb7c5572da45400a33d513a0d47b987f5d
2   buildGoModule,
3   fetchFromGitHub,
4   lib,
5 }:
7 buildGoModule rec {
8   pname = "airscan";
9   version = "0.3";
11   src = fetchFromGitHub {
12     owner = "stapelberg";
13     repo = "airscan";
14     tag = "v${version}";
15     hash = "sha256-gk0soDzrsFBh+SrWcfO/quW6JweX6MthOigTHcaq1oE=";
16   };
18   vendorHash = "sha256-I5JRGaff6OIwx4q7BjpFwvJiQe4kw03V8+McYPcJhho=";
20   meta = with lib; {
21     description = "Package to scan paper documents using the Apple AirScan (eSCL) protocol";
22     mainProgram = "airscan1";
23     homepage = "https://github.com/stapelberg/airscan";
24     changelog = "https://github.com/stapelberg/airscan/releases/tag/v${version}";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ johannwagner ];
27   };