2016-02-10 10:45:47 +01:00
|
|
|
{ stdenv, fetchurl, fetchzip, giblib, xlibsWrapper }:
|
2009-09-03 00:56:33 +02:00
|
|
|
|
2016-02-10 10:45:47 +01:00
|
|
|
let
|
|
|
|
debPatch = fetchzip {
|
|
|
|
url = mirror://debian/pool/main/s/scrot/scrot_0.8-17.debian.tar.xz;
|
|
|
|
sha256 = "0ydsr3vah5wkcbnp91knkdbil4hx0cn0iy57frl03azqzc29bkw5";
|
|
|
|
};
|
|
|
|
in
|
2009-09-03 00:56:33 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-10 10:45:47 +01:00
|
|
|
name = "scrot-0.8-17";
|
2009-09-03 00:56:33 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz";
|
|
|
|
sha256 = "1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1";
|
|
|
|
};
|
|
|
|
|
2016-02-10 10:45:47 +01:00
|
|
|
inherit debPatch;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
for patch in $(cat $debPatch/patches/series); do
|
|
|
|
patch -p1 < "$debPatch/patches/$patch"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2015-09-15 11:13:22 +02:00
|
|
|
buildInputs = [ giblib xlibsWrapper ];
|
2009-09-03 00:56:33 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://linuxbrit.co.uk/scrot/;
|
|
|
|
description = "A command-line screen capture utility";
|
2014-11-19 19:41:36 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-03 00:56:33 +02:00
|
|
|
};
|
|
|
|
}
|