b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
22 lines
663 B
Nix
22 lines
663 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, python3, libsigrok, check }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libsigrokdecode-0.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz";
|
|
sha256 = "1hfigfj1976qk11kfsgj75l20qvyq8c9p2h4mjw23d59rsg5ga2a";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib python3 libsigrok check ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Protocol decoding library for the sigrok signal analysis software suite";
|
|
homepage = https://sigrok.org/;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|