2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, installShellFiles, makeWrapper, gnupg, bzip2, xz, graphviz }:
|
2016-11-21 02:01:37 +01:00
|
|
|
|
2016-12-10 17:27:55 +01:00
|
|
|
let
|
|
|
|
|
2020-10-28 16:17:28 +01:00
|
|
|
version = "1.4.0";
|
2016-11-21 02:01:37 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
|
2016-12-10 17:27:55 +01:00
|
|
|
aptlySrc = fetchFromGitHub {
|
2016-11-21 02:01:37 +01:00
|
|
|
inherit rev;
|
2019-02-20 13:11:53 +01:00
|
|
|
owner = "aptly-dev";
|
2016-11-21 02:01:37 +01:00
|
|
|
repo = "aptly";
|
2020-10-28 16:17:28 +01:00
|
|
|
sha256 = "06cq761r3bxybb9xn58jii0ggp79mcp3810z1r2z3xcvplwhwnhy";
|
2016-11-21 02:01:37 +01:00
|
|
|
};
|
|
|
|
|
2016-12-10 17:27:55 +01:00
|
|
|
aptlyCompletionSrc = fetchFromGitHub {
|
2017-09-05 13:04:05 +02:00
|
|
|
rev = "1.0.1";
|
2016-12-10 17:27:55 +01:00
|
|
|
owner = "aptly-dev";
|
|
|
|
repo = "aptly-bash-completion";
|
2017-06-20 05:06:03 +02:00
|
|
|
sha256 = "0dkc4z687yk912lpv8rirv0nby7iny1zgdvnhdm5b47qmjr1sm5q";
|
2016-12-10 17:27:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
buildGoPackage {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "aptly";
|
|
|
|
inherit version;
|
2016-12-10 17:27:55 +01:00
|
|
|
|
|
|
|
src = aptlySrc;
|
|
|
|
|
2019-02-20 13:11:53 +01:00
|
|
|
goPackagePath = "github.com/aptly-dev/aptly";
|
2016-11-21 02:01:37 +01:00
|
|
|
|
2020-04-27 02:10:26 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
2016-11-22 17:02:32 +01:00
|
|
|
|
2016-11-21 02:01:37 +01:00
|
|
|
postInstall = ''
|
2020-04-27 02:10:26 +02:00
|
|
|
installShellCompletion --bash ${aptlyCompletionSrc}/aptly
|
2020-04-28 03:50:57 +02:00
|
|
|
wrapProgram "$out/bin/aptly" \
|
2021-01-15 10:19:50 +01:00
|
|
|
--prefix PATH ":" "${lib.makeBinPath [ gnupg bzip2 xz graphviz ]}"
|
2016-11-21 02:01:37 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.aptly.info";
|
2016-11-21 02:01:37 +01:00
|
|
|
description = "Debian repository management tool";
|
|
|
|
license = licenses.mit;
|
2019-02-17 14:00:33 +01:00
|
|
|
platforms = platforms.unix;
|
2016-11-21 02:01:37 +01:00
|
|
|
maintainers = [ maintainers.montag451 ];
|
|
|
|
};
|
|
|
|
}
|