Remove obsolete shebangfix script

This commit is contained in:
Eelco Dolstra
2015-01-07 15:28:38 +01:00
parent 4e382bce7e
commit 71aef59300
4 changed files with 4 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, shebangfix }:
{ stdenv, fetchurl, perl }:
# The homepage says this script is mature..
stdenv.mkDerivation {
@@ -9,19 +9,15 @@ stdenv.mkDerivation {
sha256 = "0dpbxf3kdvpihz9cisx6wi3zzd0cnifaqvjxavrbwm4k4sz1qamp";
};
phases = "unpackPhase installPhase";
buildInputs = [ perl shebangfix ];
buildInputs = [ perl ];
installPhase = ''
mkdir -p $out/bin;
shebangfix mysql2psql
chmod +x mysql2psql
mkdir -p $out/bin
mv {,$out/bin/}mysql2psql
'';
meta = {
description = "converts mysql dump files to psql loadable files ";
description = "Convert MySQL dump files to PostgreSQL-loadable files";
homepage = http://pgfoundry.org/projects/mysql2pgsql/;
license = stdenv.lib.licenses.bsdOriginal;
};