nixpkgs/pkgs/applications/networking/instant-messengers/cordless/default.nix

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

26 lines
613 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-09-02 00:34:09 +00:00
buildGoModule rec {
pname = "cordless";
2020-11-26 00:54:30 +00:00
version = "2020-11-22";
2020-09-02 00:34:09 +00:00
src = fetchFromGitHub {
owner = "Bios-Marcel";
repo = pname;
rev = version;
2023-09-02 02:06:05 +00:00
hash = "sha256-nOHLI0N4d8aC7KaWdLezSpVU1DS1fkfW5UO7cVYCbis=";
2020-09-02 00:34:09 +00:00
};
subPackages = [ "." ];
2023-09-02 02:06:05 +00:00
vendorHash = "sha256-XnwTqd19q+hOJZsfnFExiPDbg4pzV1Z9A6cq/jhcVgU=";
2020-09-02 00:34:09 +00:00
meta = with lib; {
2020-09-02 00:34:09 +00:00
homepage = "https://github.com/Bios-Marcel/cordless";
description = "Discord terminal client";
mainProgram = "cordless";
2020-09-02 00:34:09 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ colemickens ];
};
}