summary refs log tree commit diff
path: root/pkgs/development/libraries/libelfin/default.nix
blob: 8a8de854fc901f61ca4fc178efa6127994f897f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, python3, substituteAll }:

stdenv.mkDerivation rec {
  pname = "libelfin";
  version = "unstable-2018-08-25";

  src = fetchFromGitHub {
    owner = "aclements";
    repo = pname;
    rev = "ac45a094fadba77ad840063fb7aab82571546be0";
    sha256 = "143x680c6hsy51kngs04ypg4ql3lp498llcwj4lh1v0qp5qvjhyz";
  };

  patches = [
    (substituteAll {
      src = ./0001-Don-t-detect-package-version-with-Git.patch;
      inherit version;
    })
  ];

  nativeBuildInputs = [ python3 ];

  makeFlags = [ "PREFIX=${placeholder "out"}" ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/aclements/libelfin/";
    license = licenses.mit;
    description = "C++11 ELF/DWARF parser";
    maintainers = with maintainers; [ ma27 ];
    platforms = platforms.linux;
  };
}