remove unused custom signaldctl package (it has been upstreamed)

This commit is contained in:
colin 2023-01-26 23:37:34 +00:00
parent e095149797
commit c56734e00e
2 changed files with 0 additions and 25 deletions

View File

@ -58,7 +58,6 @@
# provided by nixpkgs patch or upstream preview
# splatmoji = prev.callPackage ../pkgs/splatmoji { };
# signaldctl = prev.callPackage ../pkgs/signaldctl { };
};
in sane // { inherit sane; }
)

View File

@ -1,24 +0,0 @@
{ lib
, buildGoModule
, fetchFromGitLab }:
buildGoModule rec {
pname = "signaldctl";
version = "0.6.1";
src = fetchFromGitLab {
owner = "signald";
repo = "signald-go";
rev = "v${version}";
hash = "sha256-lMJyr4BPZ8V2f//CUkr7CVQ6o8nRyeLBHMDEyLcHSgQ=";
};
vendorHash = "sha256-LGIWAVhDJCg6Ox7U4ZK15K8trjsvSZm4/0jNpIDmG7I=";
meta = with lib; {
description = "A golang library for communicating with signald";
homepage = "https://signald.org/signaldctl/";
license = licenses.gpl3;
maintainers = with maintainers; [ colinsane ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
};
}