Files
nixpkgs/pkgs/development/compilers/dart/package-source-builders/sqlite3_flutter_libs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
312 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
}:
{ version, src, ... }:
stdenv.mkDerivation {
pname = "sqlite3_flutter_libs";
inherit version src;
inherit (src) passthru;
postPatch = ''
cp ${./CMakeLists.txt} linux/CMakeLists.txt
'';
installPhase = ''
runHook preInstall
cp -r . $out
runHook postInstall
'';
}