Unverified Commit 8a00768f authored by Patrizio Bekerle's avatar Patrizio Bekerle
Browse files

qc: init at 0.0.4

parent 35e6df34
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:

buildGoModule rec {
  pname = "qc";
  version = "0.4.0";

  src = fetchFromGitHub {
    owner = "qownnotes";
    repo = "qc";
    rev = "v${version}";
    hash = "sha256-6dH7pmsd7kUgwHplvCfNqoq/ucDY/UZnyVxC3VvV+fQ=";
  };

  vendorHash = "sha256-7t5rQliLm6pMUHhtev/kNrQ7AOvmA/rR93SwNQhov6o=";

  ldflags = [
    "-s" "-w" "-X=github.com/qownnotes/qc/cmd.version=${version}"
  ];

  doCheck = false;

  subPackages = [ "." ];

  nativeBuildInputs = [
    installShellFiles
  ];

  postInstall = ''
    installShellCompletion --cmd qc \
      --zsh ./misc/completions/zsh/_qc
  '';

  meta = with lib; {
    description = "QOwnNotes command-line snippet manager";
    homepage = "https://github.com/qownnotes/qc";
    license = licenses.mit;
    maintainers = with maintainers; [ pbek totoroot ];
    platforms = platforms.unix;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -18824,6 +18824,8 @@ with pkgs;
  pylint-exit = callPackage ../development/tools/pylint-exit { };
  qc = callPackage ../development/tools/qc { };
  qtcreator = libsForQt5.callPackage ../development/tools/qtcreator {
    inherit (linuxPackages) perf;
  };