1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

Merge pull request #307333 from gepbird/xclicker-1.5.1

xclicker: 1.5.0 -> 1.5.1
This commit is contained in:
Nick Cao 2024-04-28 10:39:42 -04:00 committed by GitHub
commit 6d5b5b43ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, meson
, ninja
, pkg-config
@ -12,23 +11,15 @@
stdenv.mkDerivation (finalAttrs: {
pname = "xclicker";
version = "1.5.0";
version = "1.5.1";
src = fetchFromGitHub {
owner = "robiot";
repo = "xclicker";
rev = "v${finalAttrs.version}";
hash = "sha256-3D49iMzCCT9Z2Pf5INHYFZusG0BQI7La7lLaSVM/4mc=";
hash = "sha256-zVbOfqh21+/41N3FcAFajcZCrQ8iNqedZjgNQO0Zj04=";
};
patches = [
(fetchpatch {
name = "fix-malloc-size.patch";
url = "https://github.com/robiot/xclicker/commit/c99f69a747e9df75fb3676be20a3ec805526d022.patch";
hash = "sha256-ESbMBusJVNfbGxlEn1Kby00mnXvM5H0r03bX5ofC6Fg=";
})
];
nativeBuildInputs = [
meson
ninja
@ -57,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://xclicker.xyz/";
license = lib.licenses.gpl3Only;
mainProgram = "xclicker";
maintainers = with lib.maintainers; [ tomasajt ];
maintainers = with lib.maintainers; [ gepbird tomasajt ];
platforms = lib.platforms.linux;
};
})