gummy: 0.6.0 -> 0.6.1 (#350466)

This commit is contained in:
Masum Reza 2024-10-23 21:57:44 +05:30 committed by GitHub
commit 3fa42f4e75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 6 deletions

View File

@ -14,18 +14,19 @@
, fmt
, nlohmann_json
, spdlog
, nix-update-script
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gummy";
version = "0.6.0";
version = "0.6.1";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "fusco";
repo = "gummy";
rev = finalAttrs.version;
hash = "sha256-kATieFf+dEpcYgSEPoETacP7R+u2dOrg7rOhIkNQ1uE=";
hash = "sha256-ic+kTBoirMX6g79NdNoeFbNNo1LYg/z+nlt/GAB6UyQ=";
};
nativeBuildInputs = [
@ -46,8 +47,10 @@ stdenv.mkDerivation (finalAttrs: {
];
cmakeFlags = [
"-DUDEV_DIR=${placeholder "out"}/lib/udev"
"-DUDEV_RULES_DIR=${placeholder "out"}/lib/udev/rules.d"
(lib.mapAttrsToList lib.cmakeFeature {
"UDEV_DIR" = "${placeholder "out"}/lib/udev";
"UDEV_RULES_DIR" = "${placeholder "out"}/lib/udev/rules.d";
})
];
# Fixes the "gummy start" command, without this it cannot find the binary.
@ -65,6 +68,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://codeberg.org/fusco/gummy";

View File

@ -37080,8 +37080,6 @@ with pkgs;
gummi = callPackage ../applications/misc/gummi { };
gummy = callPackage ../tools/misc/gummy { };
hashpump = callPackage ../tools/misc/hashpump { };
hck = callPackage ../tools/text/hck { };