nixpkgs/pkgs/tools/graphics/scrot/default.nix
Robin Gloster 4fb5cdd413
treewide: update some homepage URLs
Updated dead or redirecting URLs on packages maintained by me.
2019-10-12 14:52:34 +02:00

26 lines
762 B
Nix

{ stdenv, fetchFromGitHub, giblib, xlibsWrapper, autoreconfHook
, autoconf-archive, libXfixes, libXcursor }:
stdenv.mkDerivation rec {
pname = "scrot";
version = "1.2";
src = fetchFromGitHub {
owner = "resurrecting-open-source-projects";
repo = pname;
rev = version;
sha256 = "08gkdby0ysx2mki57z81zlm7vfnq9c1gq692xw67cg5vv2p3320w";
};
nativeBuildInputs = [ autoreconfHook autoconf-archive ];
buildInputs = [ giblib xlibsWrapper libXfixes libXcursor ];
meta = with stdenv.lib; {
homepage = https://github.com/resurrecting-open-source-projects/scrot;
description = "A command-line screen capture utility";
platforms = platforms.linux;
maintainers = with maintainers; [ globin ];
license = licenses.mit;
};
}