Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 20 lines 327 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 kio, 6}: 7 8mkDerivation { 9 pname = "kdegraphics-mobipocket"; 10 meta = { 11 license = [ lib.licenses.gpl2Plus ]; 12 maintainers = [ lib.maintainers.ttuegel ]; 13 }; 14 nativeBuildInputs = [ extra-cmake-modules ]; 15 buildInputs = [ kio ]; 16 outputs = [ 17 "out" 18 "dev" 19 ]; 20}