sqlpkg-cli: init at 0.2.3
This commit is contained in:
parent
e2504c3429
commit
69f52ac1e1
47
pkgs/by-name/sq/sqlpkg-cli/package.nix
Normal file
47
pkgs/by-name/sq/sqlpkg-cli/package.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user