571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
79 lines
1.8 KiB
Nix
79 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, pkg-config
|
|
, libtraceevent
|
|
, asciidoc
|
|
, xmlto
|
|
, docbook_xml_dtd_45
|
|
, docbook_xsl
|
|
, valgrind
|
|
, sourceHighlight
|
|
, meson
|
|
, flex
|
|
, bison
|
|
, ninja
|
|
, cunit
|
|
, gitUpdater
|
|
, fetchpatch
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libtracefs";
|
|
version = "1.8.1";
|
|
|
|
src = fetchzip {
|
|
url = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/libtracefs-libtracefs-${version}.tar.gz";
|
|
hash = "sha256-2UiEgY4mQRLpWah+2rVfPiiUYBSSzRAy5gOv4YELQFQ=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "add-missing-documentation-to-meson-build.patch";
|
|
url = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/patch/?id=4cbebed79b1fe933367e298ea7ddef694b9f98d0";
|
|
hash = "sha256-tSaR0wpxrm50IyMgMoUCcHBB9r8lQQZZYGru6Znre50=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x samples/extract-example.sh
|
|
patchShebangs --build check-manpages.sh samples/extract-example.sh Documentation/install-docs.sh.in
|
|
'';
|
|
|
|
outputs = [ "out" "dev" "devman" "doc" ];
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
asciidoc
|
|
xmlto
|
|
docbook_xml_dtd_45
|
|
docbook_xsl
|
|
valgrind
|
|
sourceHighlight
|
|
flex
|
|
bison
|
|
];
|
|
buildInputs = [ libtraceevent ];
|
|
|
|
ninjaFlags = [ "all" "docs" ];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ cunit ];
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
# No nicer place to find latest release.
|
|
url = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git";
|
|
rev-prefix = "libtracefs-";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Linux kernel trace file system library";
|
|
mainProgram = "sqlhist";
|
|
homepage = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/";
|
|
license = licenses.lgpl21Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wentasah ];
|
|
};
|
|
}
|