nixpkgs/pkgs/development/libraries/libiec61883/default.nix
Yury G. Kudryashov 5bca69ac34 Nix-expr style review
Unneded args.something replaced with
args: with args;
line. After this line args is the only place where we can recieve variables from.

Also removed several
buildInputs = [];
lines.

svn path=/nixpkgs/trunk/; revision=10415
2008-01-30 17:20:48 +00:00

18 lines
386 B
Nix

args: with args;
stdenv.mkDerivation {
name = "libiec61883-1.1.0";
src = fetchurl {
url = http://www.linux1394.org/dl/libiec61883-1.1.0.tar.gz;
sha256 = "09f0ca7bp6lqlz6601gnyl04mfabv0azg49n1cmjyqpzh35cgxkq";
};
buildInputs = [pkgconfig libraw1394];
meta = {
description = "TODO";
homepage = http://www.linux1394.org/;
license = "LGPL";
};
}