mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
Merge pull request #303238 from kanielrkirby/new-pkg/lazysql
lazysql: init at 0.1.8
This commit is contained in:
commit
c9c0e6afed
@ -10652,6 +10652,12 @@
|
||||
githubId = 56224949;
|
||||
name = "Mia Kanashi";
|
||||
};
|
||||
kanielrkirby = {
|
||||
email = "kanielrkirby@runbox.com";
|
||||
github = "kanielrkirby";
|
||||
githubId = 77940607;
|
||||
name = "Kaniel Kirby";
|
||||
};
|
||||
karantan = {
|
||||
name = "Gasper Vozel";
|
||||
email = "karantan@gmail.com";
|
||||
|
31
pkgs/by-name/la/lazysql/package.nix
Normal file
31
pkgs/by-name/la/lazysql/package.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, xorg ? null
|
||||
, darwin ? null
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "lazysql";
|
||||
version = "0.1.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jorgerojas26";
|
||||
repo = "lazysql";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-yPf9/SM4uET/I8FsDU1le9JgxELu0DR9k7mv8PnBwvQ=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-tgD6qoCVC1ox15VPJWVvhe4yg3R81ktMuW2dsaU69rY=";
|
||||
|
||||
buildInputs = lib.optionals stdenv.isLinux [ xorg.libX11 ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cross-platform TUI database management tool written in Go";
|
||||
homepage = "https://github.com/jorgerojas26/lazysql";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kanielrkirby ];
|
||||
mainProgram = "lazysql";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user