17 stdenv.mkDerivation rec {
18 pname = "rofi-screenshot";
19 version = "2024-09-27";
21 src = fetchFromGitHub {
24 rev = "09a07d9c2ff2efbf75b1753bb412f4f8f086708f";
25 hash = "sha256-3UpYdXAX3LD1ZAQ429JkzWWooiBpuf/uPf0CRh5EXd8=";
28 nativeBuildInputs = [ makeWrapper ];
31 wrapProgram $out/bin/${pname} \
48 install -Dm755 ${pname} $out/bin/${pname}
52 description = "Use rofi to perform various types of screenshots and screen captures";
53 mainProgram = "rofi-screenshot";
54 homepage = "https://github.com/ceuk/rofi-screenshot";
55 maintainers = with lib.maintainers; [ zopieux ];
56 platforms = lib.platforms.all;
57 license = lib.licenses.wtfpl;