linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libsystemtap / default.nix
blob1ce7ef58c886ca874895004f7e93b1858bd5318e
1 {lib, stdenv, fetchgit, gettext, python, elfutils}:
3 stdenv.mkDerivation {
4   pname = "libsystemtap";
5   version = "3.2";
7   src = fetchgit {
8     url = "git://sourceware.org/git/systemtap.git";
9     rev = "4051c70c9318c837981384cbb23f3e9eb1bd0892";
10     sha256 = "0sd8n3j3rishks3gyqj2jyqhps7hmlfjyz8i0w8v98cczhhh04rq";
11     fetchSubmodules = false;
12   };
14   dontBuild = true;
16   nativeBuildInputs = [ gettext python elfutils ];
18   installPhase = ''
19     mkdir -p $out/include
20     cp -r includes/* $out/include/
21   '';
23   meta = with lib; {
24     description = "Statically defined probes development files";
25     homepage = "https://sourceware.org/systemtap/";
26     license = licenses.bsd3;
27     platforms = platforms.unix;
28     maintainers = [ lib.maintainers.farlion ];
29   };