Merge pull request #249153 from figsoda/ulid

This commit is contained in:
figsoda
2023-08-17 16:57:14 -04:00
committed by GitHub
2 changed files with 36 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ulid";
version = "2.1.0";
src = fetchFromGitHub {
owner = "oklog";
repo = "ulid";
rev = "v${version}";
hash = "sha256-/oQPgcO1xKbHXutxz0WPfIduShPrfH1l+7/mj8jLst8=";
};
vendorHash = "sha256-s1YkEwFxE1zpUUCgwOAl8i6/9HB2rcGG+4kqnixTit0=";
ldflags = [ "-s" "-w" ];
checkFlags = [
# skip flaky test
"-skip=TestMonotonicSafe"
];
meta = with lib; {
description = "Universally Unique Lexicographically Sortable Identifier (ULID) in Go";
homepage = "https://github.com/oklog/ulid";
changelog = "https://github.com/oklog/ulid/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
mainProgram = "ulid";
};
}
+2
View File
@@ -14049,6 +14049,8 @@ with pkgs;
uivonim = callPackage ../applications/editors/uivonim { };
ulid = callPackage ../tools/misc/ulid { };
umlet = callPackage ../tools/misc/umlet { };
unetbootin = libsForQt5.callPackage ../tools/cd-dvd/unetbootin { };