simplotask: init at 1.7.0

This commit is contained in:
Nikolay Korotkiy 2023-06-07 00:27:55 +04:00
parent 9328447b76
commit 2296c81400
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "simplotask";
version = "1.7.0";
src = fetchFromGitHub {
owner = "umputun";
repo = "spot";
rev = "v${version}";
hash = "sha256-aacG/s/zo4gMBsRug2i7vUyu1WUg3s+F8wtLsSVt7HQ=";
};
vendorHash = null;
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s -w"
"-X main.revision=v${version}"
];
doCheck = false;
postInstall = ''
mv $out/bin/{secrets,spot-secrets}
installManPage *.1
'';
meta = with lib; {
description = "A tool for effortless deployment and configuration management";
homepage = "https://simplotask.com/";
maintainers = with maintainers; [ sikmir ];
license = licenses.mit;
mainProgram = "spot";
};
}

View File

@ -12424,6 +12424,8 @@ with pkgs;
simple-mtpfs = callPackage ../tools/filesystems/simple-mtpfs { };
simplotask = callPackage ../tools/admin/simplotask { };
simpleproxy = callPackage ../tools/networking/simpleproxy { };
simplescreenrecorder = libsForQt5.callPackage ../applications/video/simplescreenrecorder { };