bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
21 lines
506 B
Nix
21 lines
506 B
Nix
{ stdenv, fetchurl, libv4l, gd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fswebcam-20140113";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.sanslogic.co.uk/fswebcam/files/${name}.tar.gz";
|
|
sha256 = "3ee389f72a7737700d22e0c954720b1e3bbadc8a0daad6426c25489ba9dc3199";
|
|
};
|
|
|
|
buildInputs =
|
|
[ libv4l gd ];
|
|
|
|
meta = {
|
|
description = "Neat and simple webcam app";
|
|
homepage = http://www.sanslogic.co.uk/fswebcam;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|