Remove obsolete shebangfix script
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user