nixpkgs/pkgs/tools/networking/saldl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
913 B
Nix
Raw Normal View History

{ lib, stdenv
2020-01-16 23:11:58 +00:00
, fetchFromGitHub
2021-01-17 03:51:22 +00:00
, pkg-config
2020-01-16 23:11:58 +00:00
, wafHook
2020-12-10 13:09:03 +00:00
, python3
2020-01-16 23:11:58 +00:00
, asciidoc
, docbook_xml_dtd_45
, docbook_xsl
, libxml2
, libxslt
, curl
, libevent
}:
stdenv.mkDerivation rec {
pname = "saldl";
version = "41";
2020-01-16 23:11:58 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-PAX2MUyBWWU8kGkaeoCJteidgszh7ipwDJbrLXzVsn0=";
2020-01-16 23:11:58 +00:00
};
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
2020-01-16 23:11:58 +00:00
wafHook
2020-12-10 13:09:03 +00:00
python3
2020-01-16 23:11:58 +00:00
asciidoc
docbook_xml_dtd_45
docbook_xsl
libxml2
libxslt
];
buildInputs = [ curl libevent ];
wafConfigureFlags = [ "--saldl-version ${version}" "--no-werror" ];
outputs = [ "out" "man" ];
meta = with lib; {
2020-01-16 23:11:58 +00:00
description = "CLI downloader optimized for speed and early preview";
homepage = "https://saldl.github.io";
license = licenses.agpl3;
maintainers = with maintainers; [ zowoq ];
platforms = platforms.all;
};
}