mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
4f010615bd
clipqr: add myself in maintainers list clipqr: add gpg fingerprint + fix syntax clipqr: sort maintainer entry clipqr: fix syntax Co-authored-by: Azat Bahawi <azat+github@bahawi.net> clipqr: add strip flags Co-authored-by: Azat Bahawi <azat+github@bahawi.net> clipqr: use pkg-config Co-authored-by: Azat Bahawi <azat+github@bahawi.net> clipqr: fix syntax Co-authored-by: Azat Bahawi <azat+github@bahawi.net> clipqr: fix syntax + remove xorg dev outputs clipqr: misc fixes
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{ buildGoModule
|
|
, copyDesktopItems
|
|
, fetchFromGitLab
|
|
, lib
|
|
, libGL
|
|
, libX11
|
|
, libXcursor
|
|
, libXext
|
|
, libXi
|
|
, libXinerama
|
|
, libXrandr
|
|
, makeDesktopItem
|
|
, mesa
|
|
, pkg-config
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "clipqr";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "imatt-foss";
|
|
repo = "clipqr";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-E90nTJtx4GOacu8M7oQBznnSQVDIZatibgKMZEpTUaQ=";
|
|
};
|
|
|
|
vendorSha256 = "5kAOSyVbvot4TX/XfRNe1/zZk6fa7pS1Dvn9nz11u3U=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
buildInputs = [
|
|
libGL
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
libXinerama
|
|
libXrandr
|
|
mesa
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|