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