forked from mirrors/nixpkgs
libsigrokdecode: new package
libsigrokdecode is a protocol decoding library for the sigrok signal analysis software suite. http://sigrok.org/
This commit is contained in:
parent
7329ad6813
commit
647173db26
20
pkgs/development/tools/libsigrokdecode/default.nix
Normal file
20
pkgs/development/tools/libsigrokdecode/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib, python3, libsigrok, check }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libsigrokdecode-0.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz";
|
||||
sha256 = "13s7ss52dqj7fccjgrkx10zkj41ygxn8ml1l0bs1vgczz4fvnkpf";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib python3 libsigrok check ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Protocol decoding library for the sigrok signal analysis software suite";
|
||||
homepage = http://sigrok.org/;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
|
@ -3816,6 +3816,8 @@ let
|
|||
|
||||
libsigrok = callPackage ../development/tools/libsigrok { };
|
||||
|
||||
libsigrokdecode = callPackage ../development/tools/libsigrokdecode { };
|
||||
|
||||
dejagnu = callPackage ../development/tools/misc/dejagnu { };
|
||||
|
||||
dfeet = callPackage ../development/tools/misc/d-feet {
|
||||
|
|
Loading…
Reference in a new issue