Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

liberio: init at unstable-2019-12-11 #82259

Merged
merged 1 commit into from Mar 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
37 changes: 37 additions & 0 deletions pkgs/development/libraries/liberio/default.nix
@@ -0,0 +1,37 @@
{ stdenv
, fetchFromGitHub
, autoreconfHook
, systemd
, pkg-config
}:

stdenv.mkDerivation rec {
doronbehar marked this conversation as resolved.
Show resolved Hide resolved
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 stdenv.lib; {
description = "Ettus Research DMA I/O Library";
homepage = "https://github.com/EttusResearch/liberio";
license = licenses.gpl2;
maintainers = [ maintainers.doronbehar ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -4902,6 +4902,8 @@ in

libevdev = callPackage ../development/libraries/libevdev { };

liberio = callPackage ../development/libraries/liberio { };

libevdevplus = callPackage ../development/libraries/libevdevplus { };

libfann = callPackage ../development/libraries/libfann { };
Expand Down