lol

obuild: remove dependency on findlib

+3 -3
+3 -3
pkgs/development/tools/ocaml/obuild/default.nix
··· 1 - { stdenv, fetchzip, ocamlPackages }: 2 3 let version = "0.1.8"; in 4 ··· 10 sha256 = "1q1k2qqd08j1zakvydgvwgwpyn0ll7rs65gap0pvg3amnh5cp3wd"; 11 }; 12 13 - buildInputs = with ocamlPackages; [ ocaml findlib ]; 14 15 buildPhase = '' 16 ./bootstrap ··· 23 24 meta = { 25 homepage = https://github.com/ocaml-obuild/obuild; 26 - platforms = ocamlPackages.ocaml.meta.platforms or []; 27 description = "Simple package build system for OCaml"; 28 license = stdenv.lib.licenses.lgpl21; 29 maintainers = with stdenv.lib.maintainers; [ volth ];
··· 1 + { stdenv, fetchzip, ocaml }: 2 3 let version = "0.1.8"; in 4 ··· 10 sha256 = "1q1k2qqd08j1zakvydgvwgwpyn0ll7rs65gap0pvg3amnh5cp3wd"; 11 }; 12 13 + buildInputs = [ ocaml ]; 14 15 buildPhase = '' 16 ./bootstrap ··· 23 24 meta = { 25 homepage = https://github.com/ocaml-obuild/obuild; 26 + platforms = ocaml.meta.platforms or []; 27 description = "Simple package build system for OCaml"; 28 license = stdenv.lib.licenses.lgpl21; 29 maintainers = with stdenv.lib.maintainers; [ volth ];