14 lines
394 B
Nix
14 lines
394 B
Nix
{ lib, buildGoModule }:
|
|
buildGoModule {
|
|
pname = "pad-archiver";
|
|
version = "0.0.1";
|
|
src = ../.;
|
|
vendorSha256 = "sha256-vBni3j3o0P13PJg/Ab1ux9zSVr05Iha/sb8dVTX4G0g=";
|
|
ldflags = [ "-s" "-w" ];
|
|
meta = with lib; {
|
|
description = "Archives Etherpads with git";
|
|
homepage = "https://github.com/dadada/pad-archiver";
|
|
license = licenses.mit;
|
|
maintainers = [ "dadada" ];
|
|
};
|
|
}
|