* 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

View File

@@ -0,0 +1,16 @@
{ stdenv, fetchurl, x11, imlib2 }:
stdenv.mkDerivation rec {
name = "giblib-1.2.4";
src = fetchurl {
url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz";
sha256 = "1b4bmbmj52glq0s898lppkpzxlprq9aav49r06j2wx4dv3212rhp";
};
buildInputs = [x11 imlib2];
meta = {
homepage = http://linuxbrit.co.uk/giblib/;
};
}