summary refs log tree commit diff
path: root/pkgs/tools/graphics/scrot/default.nix
blob: 035e135a2e4095a5d5b4c72524be070135eea70c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, fetchzip, giblib, xlibsWrapper }:

let
  debPatch = fetchzip {
    url = mirror://debian/pool/main/s/scrot/scrot_0.8-18.debian.tar.xz;
    sha256 = "1m8m8ad0idf3nzw0k57f6rfbw8n7dza69a7iikriqgbrpyvxqybx";
  };
in
stdenv.mkDerivation rec {
  name = "scrot-0.8-18";

  src = fetchurl {
    url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz";
    sha256 = "1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1";
  };

  postPatch = ''
    for patch in $(cat ${debPatch}/patches/series); do
      patch -p1 < "${debPatch}/patches/$patch"
    done
  '';

  buildInputs = [ giblib xlibsWrapper ];

  meta = with stdenv.lib; {
    homepage = http://linuxbrit.co.uk/scrot/;
    description = "A command-line screen capture utility";
    platforms = platforms.linux;
    maintainers = with maintainers; [ ];
    license = licenses.mit;
  };
}