nixpkgs/pkgs/tools/video/swftools/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

19 lines
425 B
Nix

{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation {
name = "swftools-0.8.1";
src = fetchurl {
url = http://www.swftools.org/swftools-0.8.1.tar.gz;
sha256 = "0l75c3ibwd24g9nqghp1rv1dfrlicw87s0rbdnyffjv4izz6gc2l";
};
buildInputs = [ zlib ];
meta = {
description = "Collection of SWF manipulation and creation utilities";
homepage = http://www.swftools.org/about.html;
license = "GPLv2";
};
}