Unverified Commit 3bb5e993 authored by isabel's avatar isabel
Browse files

mangal: format with nixfmt-rfc-style

parent 4bcfdfd2
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
{ lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:

{
  lib,
  stdenv,
  buildGoModule,
  fetchFromGitHub,
  installShellFiles,
}:
buildGoModule rec {
  pname = "mangal";
  version = "4.0.6";
@@ -14,7 +19,10 @@ buildGoModule rec {
  proxyVendor = true;
  vendorHash = null;

  ldflags = [ "-s" "-w" ];
  ldflags = [
    "-s"
    "-w"
  ];

  nativeBuildInputs = [ installShellFiles ];

@@ -30,8 +38,7 @@ buildGoModule rec {
  doCheck = false; # test fail because of sandbox

  meta = with lib; {
    description =
      "A fancy CLI app written in Go which scrapes, downloads and packs manga into different formats";
    description = "CLI app written in Go which scrapes, downloads and packs manga into different formats";
    homepage = "https://github.com/metafates/mangal";
    license = licenses.mit;
    maintainers = [ maintainers.bertof ];