about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/dart/package-source-builders/media_kit_libs_linux/default.nix
blob: 92bfc7e7fa60bd8b5010dab30d8c8d67602cc0b1 (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
{ stdenv
}:

# Implementation notes

# The patch exploits the fact that the download part is enclosed with "# ---"
# To use this module you will need to pass the CMake variable MIMALLOC_LIB
# example: -DMIMALLOC_LIB=${pkgs.mimalloc}/lib/mimalloc.o

# Direct link for the original CMakeLists.txt: https://raw.githubusercontent.com/media-kit/media-kit/main/libs/linux/media_kit_libs_linux/linux/CMakeLists.txt

{version, src, ...}:

stdenv.mkDerivation {
  pname = "media_kit_libs_linux";
  inherit version src;
  inherit (src) passthru;

  doBuild = false;

  postPatch = ''
    awk -i inplace 'BEGIN {opened = 0}; /# --*[^$]*/ { print (opened ? "]===]" : "#[===["); opened = !opened }; {print $0}' linux/CMakeLists.txt
  '';

  installPhase = ''
    runHook preInstall

    mkdir -p "$out"
    cp -r ./* "$out"

    runHook postInstall
  '';
}