summary refs log tree commit diff
path: root/pkgs/development/libraries/libjpeg
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2017-01-24 16:22:25 +0000
committerzimbatm <zimbatm@zimbatm.com>2017-01-24 16:22:25 +0000
commit1005d786ba87a7e3507423e38dba02d04c01819a (patch)
treed708b2c7789ba43d0d2772687b8e9245a5a3ed62 /pkgs/development/libraries/libjpeg
parent38cc58896c9c368bd1b470a9760b28462401033c (diff)
downloadnixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.tar
nixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.tar.gz
nixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.tar.bz2
nixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.tar.lz
nixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.tar.xz
nixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.tar.zst
nixpkgs-1005d786ba87a7e3507423e38dba02d04c01819a.zip
libjpeg62: remove
This package has broken upstream url and was only used by warsow
Diffstat (limited to 'pkgs/development/libraries/libjpeg')
-rw-r--r--pkgs/development/libraries/libjpeg/62.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/libraries/libjpeg/62.nix b/pkgs/development/libraries/libjpeg/62.nix
deleted file mode 100644
index 3ae8cfac39c..00000000000
--- a/pkgs/development/libraries/libjpeg/62.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{stdenv, fetchurl, libtool, static ? false, ...}: 
-
-stdenv.mkDerivation {
-  name = "libjpeg-6b";
-  
-  builder = ./builder.sh;
-  
-  src = fetchurl {
-    url = http://www.ijg.org/files/jpegsrc.v6b.tar.gz;
-    sha256 = "0pg34z6rbkk5kvdz6wirf7g4mdqn5z8x97iaw17m15lr3qjfrhvm";
-  };
-  
-  inherit libtool;
-
-  configureFlags = "--enable-shared ${if static then " --enable-static" else ""}";
-    
-  # Required for building of dynamic libraries on Darwin.
-  patches = [
-    (fetchurl {
-      url = http://svn.macports.org/repository/macports/trunk/dports/graphics/jpeg/files/patch-ltconfig;
-      md5 = "e6725fa4a09aa1de4ca75343fd0f61d5";
-    })
-    (fetchurl {
-      url = http://svn.macports.org/repository/macports/trunk/dports/graphics/jpeg/files/patch-ltmain.sh;
-      #md5 = "489986ad8e7a93aef036766b25f321d5";
-      md5 = "092a12aeb0c386dd7dae059109d950ba";
-    })
-  ];
-
-  meta = {
-        platforms = stdenv.lib.platforms.unix;
-  };
-}