nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 38 lines 838 B view raw
1{ 2 lib, 3 stdenv, 4 fetchgit, 5 cmake, 6 libsForQt5, 7}: 8 9stdenv.mkDerivation { 10 pname = "qscreenshot"; 11 version = "unstable-2021-10-18"; 12 13 src = fetchgit { 14 url = "https://git.code.sf.net/p/qscreenshot/code"; 15 rev = "e340f06ae2f1a92a353eaa68e103d1c840adc12d"; 16 sha256 = "0mdiwn74vngiyazr3lq72f3jnv5zw8wyd2dw6rik6dbrvfs69jig"; 17 }; 18 19 preConfigure = "cd qScreenshot"; 20 21 nativeBuildInputs = [ 22 cmake 23 libsForQt5.qttools 24 libsForQt5.wrapQtAppsHook 25 ]; 26 buildInputs = [ 27 libsForQt5.qtbase 28 libsForQt5.qtx11extras 29 ]; 30 meta = with lib; { 31 description = "Simple creation and editing of screenshots"; 32 mainProgram = "qScreenshot"; 33 homepage = "https://sourceforge.net/projects/qscreenshot/"; 34 license = licenses.gpl2; 35 platforms = platforms.all; 36 maintainers = [ maintainers.bjornfor ]; 37 }; 38}