Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
838 B
Nix
39 lines
838 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
cmake,
|
|
libsForQt5,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "qscreenshot";
|
|
version = "unstable-2021-10-18";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.code.sf.net/p/qscreenshot/code";
|
|
rev = "e340f06ae2f1a92a353eaa68e103d1c840adc12d";
|
|
sha256 = "0mdiwn74vngiyazr3lq72f3jnv5zw8wyd2dw6rik6dbrvfs69jig";
|
|
};
|
|
|
|
preConfigure = "cd qScreenshot";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
libsForQt5.qttools
|
|
libsForQt5.wrapQtAppsHook
|
|
];
|
|
buildInputs = [
|
|
libsForQt5.qtbase
|
|
libsForQt5.qtx11extras
|
|
];
|
|
meta = with lib; {
|
|
description = "Simple creation and editing of screenshots";
|
|
mainProgram = "qScreenshot";
|
|
homepage = "https://sourceforge.net/projects/qscreenshot/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|