summary refs log tree commit diff
path: root/pkgs/tools/video/swftools/default.nix
blob: 806a0b2109609bb20977674e6e3e853f4e8a379c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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";
  };
}