about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libcork/default.nix
blob: 87a068c24d1a92b8efc2e232fad746b386fa7c6b (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ stdenv
, fetchFromGitHub
, cmake
, lib
, pkg-config
, check
}:
stdenv.mkDerivation rec {
  pname = "libcork";
  version = "1.0.0--rc3";

  src = fetchFromGitHub {
    owner = "dcreager";
    repo = pname;
    rev = version;
    sha256 = "152gqnmr6wfmflf5l6447am4clmg3p69pvy3iw7yhaawjqa797sk";
  };

  postPatch = ''
    # N.B. We need to create this file, otherwise it tries to use git to
    # determine the package version, which we do not want.
    echo "${version}" > .version-stamp
    echo "${version}" > .commit-stamp

    # N.B. We disable tests by force, since their build is broken.
    sed -i '/add_subdirectory(tests)/d' ./CMakeLists.txt

    # https://github.com/dcreager/libcork/issues/173
    substituteInPlace cmake/FindCTargets.cmake \
      --replace '\$'{exec_prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} \
      --replace '\$'{prefix}/'$'{CMAKE_INSTALL_INCLUDEDIR} '$'{CMAKE_INSTALL_FULL_INCLUDEDIR} \
      --replace '\$'{datarootdir}/'$'{base_docdir} '$'{CMAKE_INSTALL_FULL_DOCDIR}
  '';

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ check ];

  doCheck = false;

  postInstall = ''
    ln -s $out/lib/libcork.so $out/lib/libcork.so.1
  '';

  meta = with lib; {
    homepage = "https://github.com/dcreager/libcork";
    description = "A simple, easily embeddable cross-platform C library";
    mainProgram = "cork-hash";
    license = licenses.bsd3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ lovesegfault ];
  };
}