nixpkgs/pkgs/development/libraries/liberio/default.nix

39 lines
730 B
Nix
Raw Normal View History

{ stdenv
, lib
2020-03-09 13:15:17 +00:00
, fetchFromGitHub
, autoreconfHook
, systemd
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "liberio";
version = "unstable-2019-12-11";
src = fetchFromGitHub {
owner = "EttusResearch";
repo = "liberio";
rev = "81777e500d1c3b88d5048d46643fb5553eb5f786";
sha256 = "1n40lj5g497mmqh14vahdhy3jwvcry2pkc670p4c9f1pggp6ysgk";
};
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
systemd
];
doCheck = true;
meta = with lib; {
2020-03-09 13:15:17 +00:00
description = "Ettus Research DMA I/O Library";
homepage = "https://github.com/EttusResearch/liberio";
license = licenses.gpl2;
maintainers = [ maintainers.doronbehar ];
platforms = platforms.all;
};
}