fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, glib, python3, libsigrok, check }:
2
3stdenv.mkDerivation rec {
4 name = "libsigrokdecode-0.5.2";
5
6 src = fetchurl {
7 url = "https://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz";
8 sha256 = "1w434nl1syjkvwl08lji3r9sr60lbxp1nqys8hqwzv2lgiwrx3g0";
9 };
10
11 nativeBuildInputs = [ pkgconfig ];
12 buildInputs = [ glib python3 libsigrok check ];
13
14 meta = with stdenv.lib; {
15 description = "Protocol decoding library for the sigrok signal analysis software suite";
16 homepage = https://sigrok.org/;
17 license = licenses.gpl3Plus;
18 platforms = platforms.linux;
19 maintainers = [ maintainers.bjornfor ];
20 };
21}