mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, boost, gtkmm2, lv2, pkg-config, python3, wafHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lvtk";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lvtk";
|
|
repo = "lvtk";
|
|
rev = version;
|
|
sha256 = "sha256-6IoyhBig3Nvc4Y8F0w8b1up6sn8O2RmoUVaBQ//+Aaw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config python3 wafHook ];
|
|
buildInputs = [ boost gtkmm2 lv2 ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
# Fix including the boost libraries during linking
|
|
sed -i '/target[ ]*= "ttl2c"/ ilib=["boost_system"],' tools/wscript_build
|
|
|
|
# don't use bundled waf
|
|
rm waf
|
|
|
|
# remove (useless) python2 based print
|
|
sed -e '/print/d' -i wscript
|
|
'';
|
|
|
|
wafConfigureFlags = [
|
|
"--boost-includes=${boost.dev}/include"
|
|
"--boost-libs=${boost.out}/lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Set C++ wrappers around the LV2 C API";
|
|
mainProgram = "ttl2c";
|
|
homepage = "https://lvtk.org/";
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|