Merge pull request #77851 from zowoq/saldl

saldl: init at 40
This commit is contained in:
lewo 2020-01-21 08:43:05 +01:00 committed by GitHub
commit 2b4753182e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 56 additions and 0 deletions

View file

@ -7856,6 +7856,12 @@
githubId = 1069303;
name = "Kim Simmons";
};
zowoq = {
email = "59103226+zowoq@users.noreply.github.com";
github = "zowoq";
githubId = 59103226;
name = "zowoq";
};
zraexy = {
email = "zraexy@gmail.com";
github = "zraexy";

View file

@ -0,0 +1,48 @@
{ stdenv
, fetchFromGitHub
, pkgconfig
, wafHook
, asciidoc
, docbook_xml_dtd_45
, docbook_xsl
, libxml2
, libxslt
, curl
, libevent
}:
stdenv.mkDerivation rec {
pname = "saldl";
version = "40";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "19ajci5h5gdnrvwf0l7xy5s58z2di68rrvcmqpsmpp4lfr37rk2l";
};
nativeBuildInputs = [
pkgconfig
wafHook
asciidoc
docbook_xml_dtd_45
docbook_xsl
libxml2
libxslt
];
buildInputs = [ curl libevent ];
wafConfigureFlags = [ "--saldl-version ${version}" "--no-werror" ];
outputs = [ "out" "man" ];
meta = with stdenv.lib; {
description = "CLI downloader optimized for speed and early preview";
homepage = "https://saldl.github.io";
license = licenses.agpl3;
maintainers = with maintainers; [ zowoq ];
platforms = platforms.all;
};
}

View file

@ -6234,6 +6234,8 @@ in
sahel-fonts = callPackage ../data/fonts/sahel-fonts { };
saldl = callPackage ../tools/networking/saldl { };
salt = callPackage ../tools/admin/salt {};
salut_a_toi = callPackage ../applications/networking/instant-messengers/salut-a-toi {};