nixpkgs/pkgs/tools/misc/paperlike-go/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
773 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "paperlike-go";
version = "unstable-2021-03-26";
src = fetchFromGitHub {
owner = "leoluk";
repo = "paperlike-go";
rev = "bd658d88ea9a3b21e1b301b96253abab7cf56d79";
2023-09-21 14:23:40 +00:00
hash = "sha256-UuFzBkhIKStVitMYf0Re4dSyYqwLGocRyMPewosVFsA=";
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-OfTeJd3VS/WoUpyPY7XfQZWLrvS+vqPPgeL2Hd0HtgI=";
2023-09-21 14:23:40 +00:00
subPackages = [ "cmd/paperlike-cli" ];
meta = {
description = "A Linux Go library and CLI utility to control a Dasung Paperlike display via I2C DDC";
homepage = "https://github.com/leoluk/paperlike-go";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.adisbladis ];
platforms = lib.platforms.linux;
2023-11-27 01:17:53 +00:00
mainProgram = "paperlike-cli";
};
}