aptly: init at 0.9.7

This commit is contained in:
montag451
2016-11-21 02:01:37 +01:00
parent 0c6b3a3647
commit 59ba4276b7
3 changed files with 278 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{ stdenv, buildGoPackage, fetchFromGitHub, gnupg1compat, bzip2, xz, graphviz }:
buildGoPackage rec {
name = "aptly-${version}";
version = "0.9.7";
rev = "v${version}";
src = fetchFromGitHub {
inherit rev;
owner = "smira";
repo = "aptly";
sha256 = "0j1bmqdah4i83r2cf8zcq87aif1qg90yasgf82yygk3hj0gw1h00";
};
goPackagePath = "github.com/smira/aptly";
goDeps = ./deps.nix;
postInstall = ''
rm $bin/bin/man
'';
propagatedUserEnvPkgs = [ gnupg1compat bzip2.bin xz.bin graphviz ];
meta = with stdenv.lib; {
homepage = https://www.aptly.info;
description = "Debian repository management tool";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.montag451 ];
};
}