summary refs log tree commit diff
path: root/pkgs/tools/video/swftools
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-10-16 11:01:10 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-10-16 11:01:10 +0000
commit9faee768da3cff38952e658193c51493e60f67f8 (patch)
treed144ec16ad37b2fb6e46e9ee0ef06ad0d258ee9a /pkgs/tools/video/swftools
parent27c0b887ac907565e1c814b87882396cdd77a58a (diff)
downloadnixpkgs-9faee768da3cff38952e658193c51493e60f67f8.tar
nixpkgs-9faee768da3cff38952e658193c51493e60f67f8.tar.gz
nixpkgs-9faee768da3cff38952e658193c51493e60f67f8.tar.bz2
nixpkgs-9faee768da3cff38952e658193c51493e60f67f8.tar.lz
nixpkgs-9faee768da3cff38952e658193c51493e60f67f8.tar.xz
nixpkgs-9faee768da3cff38952e658193c51493e60f67f8.tar.zst
nixpkgs-9faee768da3cff38952e658193c51493e60f67f8.zip
added swftools
svn path=/nixpkgs/trunk/; revision=13078
Diffstat (limited to 'pkgs/tools/video/swftools')
-rw-r--r--pkgs/tools/video/swftools/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/video/swftools/default.nix b/pkgs/tools/video/swftools/default.nix
new file mode 100644
index 00000000000..4249d32b3ce
--- /dev/null
+++ b/pkgs/tools/video/swftools/default.nix
@@ -0,0 +1,24 @@
+args:
+args.stdenv.mkDerivation {
+  # snapshot version does'nt compile
+  #name = "swftools-2008-10-13-1554";
+  name = "swftools-0.8.1";
+
+  src = args.fetchurl {
+    #url = http://www.swftools.org/swftools-2008-10-13-1554.tar.gz;
+    #sha256 = "05r2qg8yc6lpj5263jyrdykr2vkq9rlyqxydx0rnfnkqpr7s6931";
+
+    url = http://www.swftools.org/swftools-0.8.1.tar.gz;
+    sha256 = "0l75c3ibwd24g9nqghp1rv1dfrlicw87s0rbdnyffjv4izz6gc2l";
+  };
+
+  buildInputs =(with args; [zlib 
+                            # the following are not needed to compile 0.8.1
+                            libjpeg giflib freetype]);
+
+  meta = { 
+      description = "collection of SWF manipulation and creation utilities";
+      homepage = http://www.swftools.org/about.html;
+      license = "GPLv2";
+    };
+}