NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
16.42k stars 12.92k forks source link

Peek potentially missing some dependencies #39832

Open garry-cairns opened 6 years ago

garry-cairns commented 6 years ago

Issue description

Installing the peek screen recorder on 18.03 results in a peek installation that doesn't work properly. When recording to a gif, the gif created is not a valid gif and can't be opened as a gif.

Steps to reproduce

Install nix-env -i peek on a clean 18.03 NixOS and try to record a gif. It will not be a valid gif.

Technical details

Potential fix

I was able to get peek working from a nix-shell with the following default.nix:

{ }:

let
pkgs = import <nixpkgs> { };
in
pkgs.stdenv.mkDerivation {
    name = "peek_screen_recorder";
    src = ./.;
    buildInputs = [
    pkgs.ffmpeg
    pkgs.glib
    pkgs.gst_all_1.gst-plugins-good
    pkgs.gst_all_1.gst-plugins-ugly
    pkgs.keybinder
    pkgs.peek
    ];
}
PanAeon commented 5 years ago

Works for me fine on 18.09.2203.9bd45dddf81 (Jellyfish).

stale[bot] commented 4 years ago

Thank you for your contributions.

This has been automatically marked as stale because it has had no activity for 180 days.

If this is still important to you, we ask that you leave a comment below. Your comment can be as simple as "still important to me". This lets people see that at least one person still cares about this. Someone will have to do this at most twice a year if there is no other activity.

Here are suggestions that might help resolve this more quickly:

  1. Search for maintainers and people that previously touched the related code and @ mention them in a comment.
  2. Ask on the NixOS Discourse.
  3. Ask on the #nixos channel on irc.freenode.net.