Files
nixpkgs/pkgs/by-name/li/liberio/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
750 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
systemd,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "liberio";
version = "0-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; {
description = "Ettus Research DMA I/O Library";
homepage = "https://github.com/EttusResearch/liberio";
license = licenses.gpl2;
maintainers = [ maintainers.doronbehar ];
platforms = platforms.all;
};
})