From 67ec19e854efd2f1e1161c60abd2424aeb95a1ac Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 15 Oct 2021 00:08:45 +0200 Subject: feat(3p/dfmt): Add derivation for the D code formatter Change-Id: I4e06676f45df334db4fbc4f1657a6f16828547dc Reviewed-on: https://cl.tvl.fyi/c/depot/+/3727 Tested-by: BuildkiteCI Reviewed-by: sterni --- third_party/dfmt/default.nix | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 third_party/dfmt/default.nix (limited to 'third_party/dfmt/default.nix') diff --git a/third_party/dfmt/default.nix b/third_party/dfmt/default.nix new file mode 100644 index 000000000000..6444940ab017 --- /dev/null +++ b/third_party/dfmt/default.nix @@ -0,0 +1,35 @@ +# dfmt is a code formatter for D +{ pkgs, lib, ... }: + +pkgs.stdenv.mkDerivation rec { + pname = "dfmt"; + version = "0.13.4"; + + src = pkgs.fetchFromGitHub { + owner = "dlang-community"; + repo = "dfmt"; + rev = "v${version}"; + sha256 = "02a8qvrmnl1c15y6irxlhqpr0hjj5s8qk0jc20ivj0fl6p4v9shj"; + fetchSubmodules = true; + }; + + nativeBuildInputs = with pkgs; [ + dmd + + # fake git that will be used to fetch the version string + (pkgs.writeShellScriptBin "git" '' + echo 'v${version}' + '') + ]; + + installPhase = '' + mkdir -p $out/bin + cp bin/dfmt $out/bin/ + ''; + + meta = { + description = "D code formatter"; + homepage = "https://github.com/dlang-community/dfmt"; + license = lib.licenses.boost; + }; +} -- cgit 1.4.1