This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
80 lines
1.4 KiB
Nix
80 lines
1.4 KiB
Nix
{
|
|
buildGoModule,
|
|
copyDesktopItems,
|
|
fetchFromGitLab,
|
|
lib,
|
|
libGL,
|
|
libX11,
|
|
libXcursor,
|
|
libXext,
|
|
libXi,
|
|
libXinerama,
|
|
libXrandr,
|
|
libXxf86vm,
|
|
makeDesktopItem,
|
|
libgbm,
|
|
pkg-config,
|
|
stdenv,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "clipqr";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "imatt-foss";
|
|
repo = "clipqr";
|
|
rev = "v${version}";
|
|
hash = "sha256-iuA6RqclMm1CWaiM1kpOpgfYvKaYGOIwFQkLr/nCL5M=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
buildInputs = [
|
|
libGL
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
libXinerama
|
|
libXrandr
|
|
libXxf86vm
|
|
libgbm
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
pkg-config
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm644 icon.svg $out/share/icons/hicolor/scalable/apps/clipqr.svg
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "ClipQR";
|
|
desktopName = "ClipQR";
|
|
exec = "clipqr";
|
|
categories = [ "Utility" ];
|
|
icon = "clipqr";
|
|
comment = "Scan QR codes on screen and from camera";
|
|
genericName = "ClipQR";
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Scan QR codes on screen and from camera, the result is in your clipboard";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ MatthieuBarthel ];
|
|
homepage = "https://gitlab.com/imatt-foss/clipqr";
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
mainProgram = "clipqr";
|
|
};
|
|
}
|