mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
airscan: init at 0.3
This commit is contained in:
parent
c109edf44d
commit
2c3cc38221
26
pkgs/by-name/ai/airscan/package.nix
Normal file
26
pkgs/by-name/ai/airscan/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "airscan";
|
||||
version = "0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stapelberg";
|
||||
repo = "airscan";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-gk0soDzrsFBh+SrWcfO/quW6JweX6MthOigTHcaq1oE=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-I5JRGaff6OIwx4q7BjpFwvJiQe4kw03V8+McYPcJhho=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Package to scan paper documents using the Apple AirScan (eSCL) protocol";
|
||||
homepage = "https://github.com/stapelberg/airscan";
|
||||
changelog = "https://github.com/stapelberg/airscan/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ johannwagner ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user