commit
edc97c274b
2 changed files with 42 additions and 0 deletions
40
pkgs/development/tools/qc/default.nix
Normal file
40
pkgs/development/tools/qc/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue