Skip to content

Commit

Permalink
Merge pull request NixOS#303238 from kanielrkirby/new-pkg/lazysql
Browse files Browse the repository at this point in the history
lazysql: init at 0.1.8
  • Loading branch information
h7x4 authored Jun 16, 2024
2 parents 21451b0 + abe27b5 commit c9c0e6a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10652,6 +10652,12 @@
githubId = 56224949;
name = "Mia Kanashi";
};
kanielrkirby = {
email = "[email protected]";
github = "kanielrkirby";
githubId = 77940607;
name = "Kaniel Kirby";
};
karantan = {
name = "Gasper Vozel";
email = "[email protected]";
Expand Down
31 changes: 31 additions & 0 deletions pkgs/by-name/la/lazysql/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}

0 comments on commit c9c0e6a

Please sign in to comment.