* Added scrot, a command-line screen capture utility.

svn path=/nixpkgs/trunk/; revision=16946
This commit is contained in:
Eelco Dolstra
2009-09-02 22:56:33 +00:00
parent 99cd5a1679
commit 5de6c065d3
3 changed files with 42 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
{ stdenv, fetchurl, giblib, x11 }:
stdenv.mkDerivation rec {
name = "scrot-0.8";
src = fetchurl {
url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz";
sha256 = "1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1";
};
buildInputs = [ giblib x11 ];
meta = {
homepage = http://linuxbrit.co.uk/scrot/;
description = "A command-line screen capture utility";
};
}