Commit 69f52ac1 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt
Browse files

sqlpkg-cli: init at 0.2.3

parent e2504c34
Loading
Loading
Loading
Loading
+47 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "sqlpkg-cli";
  version = "0.2.3";

  src = fetchFromGitHub {
    owner = "nalgeon";
    repo = "sqlpkg-cli";
    rev = "refs/tags/${version}";
    hash = "sha256-qytqTaoslBcoIn84tSiLABwRcnY/FsyWYD3sugGEYB0=";
  };

  vendorHash = null;

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

  postInstall = ''
    mv -v $out/bin/cli $out/bin/sqlpkg
  '';

  preCheck = ''
    export HOME="$TMP"
  '';

  meta = {
    description = "SQLite package manager";
    homepage = "https://github.com/nalgeon/sqlpkg-cli";
    changelog = "https://github.com/nalgeon/sqlpkg-cli/releases/tag/${version}";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.pbsds ];
    mainProgram = "sqlpkg";
    platforms = lib.platforms.unix;
    badPlatforms = [
      "aarch64-linux" # assets_test.go:44: BuildAssetPath: unexpected error unsupported platform: linux-arm64
      "x86_64-darwin" # assets_test.go:44: BuildAssetPath: unexpected error unsupported platform: darwin-amd64
      "aach64-darwin" # install_test.go:22: installation error: failed to dequarantine files: exec: "xattr": executable file not found in $PATH
    ];
  };
}