Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 41 lines 828 B view raw
1{ 2 lib, 3 fetchFromGitLab, 4 stdenv, 5 cmake, 6 extra-cmake-modules, 7 libsForQt5, 8}: 9stdenv.mkDerivation { 10 pname = "licensedigger"; 11 version = "0-unstable-2024-08-28"; 12 13 src = fetchFromGitLab { 14 domain = "invent.kde.org"; 15 owner = "SDK"; 16 repo = "licensedigger"; 17 rev = "cc4b24d3fb67afa8fb0a9ef61210588958eaf0f5"; 18 hash = "sha256-/ZEja+iDx0lVkJaLshPd1tZD4ZUspVeFHY1TNXjr4qg="; 19 }; 20 21 nativeBuildInputs = [ 22 cmake 23 extra-cmake-modules 24 ]; 25 26 buildInputs = [ 27 libsForQt5.qtbase 28 ]; 29 30 dontWrapQtApps = true; 31 32 meta = { 33 description = "Tools to convert existing license headers to SPDX compliant headers"; 34 homepage = "https://invent.kde.org/sdk/licensedigger"; 35 license = with lib.licenses; [ 36 gpl2Only 37 gpl3Only 38 ]; 39 maintainers = with lib.maintainers; [ onny ]; 40 }; 41}