Merge pull request #9237 from NixOS/remove-unreferenced-files
Remove unreferenced files
This commit is contained in:
commit
46105f7d18
|
@ -1,9 +0,0 @@
|
||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
PATH=$perl/bin:$PATH
|
|
||||||
|
|
||||||
tar xvfz $src
|
|
||||||
cd hello-*
|
|
||||||
./configure --prefix=$out
|
|
||||||
make
|
|
||||||
make install
|
|
|
@ -1,16 +0,0 @@
|
||||||
{stdenv, fetchurl, perl}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "hello-2.1.1";
|
|
||||||
builder = ./builder.sh;
|
|
||||||
src = fetchurl {
|
|
||||||
url = mirror://gnu/hello/hello-2.1.1.tar.gz;
|
|
||||||
md5 = "70c9ccf9fac07f762c24f2df2290784d";
|
|
||||||
};
|
|
||||||
inherit perl;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "GNU Hello, a classic computer science tool";
|
|
||||||
homepage = http://www.gnu.org/software/hello/;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,51 +0,0 @@
|
||||||
x@{builderDefsPackage
|
|
||||||
, glib, libsoup, libxml2, pkgconfig, intltool, perl
|
|
||||||
, libtasn1, nettle, gmp
|
|
||||||
, ...}:
|
|
||||||
builderDefsPackage
|
|
||||||
(a :
|
|
||||||
let
|
|
||||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
|
||||||
[];
|
|
||||||
|
|
||||||
buildInputs = map (n: builtins.getAttr n x)
|
|
||||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
|
||||||
sourceInfo = rec {
|
|
||||||
baseName="libgdata";
|
|
||||||
majorVersion="0.6";
|
|
||||||
minorVersion="6";
|
|
||||||
version="${majorVersion}.${minorVersion}";
|
|
||||||
name="${baseName}-${version}";
|
|
||||||
url="mirror://gnome/sources/${baseName}/${majorVersion}/${name}.tar.bz2";
|
|
||||||
hash="cf6de3b60443faaf8e9c3b4c4b160c22a48df7925c1c793a7bb71d3d746f69f5";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
src = a.fetchurl {
|
|
||||||
url = sourceInfo.url;
|
|
||||||
sha256 = sourceInfo.hash;
|
|
||||||
};
|
|
||||||
|
|
||||||
inherit (sourceInfo) name version;
|
|
||||||
inherit buildInputs;
|
|
||||||
|
|
||||||
/* doConfigure should be removed if not needed */
|
|
||||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "GData API library";
|
|
||||||
maintainers = with a.lib.maintainers;
|
|
||||||
[
|
|
||||||
raskin
|
|
||||||
];
|
|
||||||
platforms = with a.lib.platforms;
|
|
||||||
linux;
|
|
||||||
license = a.lib.licenses.lgpl21Plus;
|
|
||||||
};
|
|
||||||
passthru = {
|
|
||||||
updateInfo = {
|
|
||||||
downloadPage = "http://ftp.gnome.org/pub/GNOME/sources/${sourceInfo.baseName}/${sourceInfo.majorVersion}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}) x
|
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
{ stdenv, fetchurl,
|
|
||||||
cmake, qt4, clucene_core, librdf_redland, libiodbc
|
|
||||||
, pkgconfig }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "libkolab-0.4.2";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://mirror.kolabsys.com/pub/releases/${name}.tar.gz";
|
|
||||||
sha256 = "1wdbg42s14p472dn35n6z638i6n64f6mjjxmjam1r54pzsdykks6";
|
|
||||||
};
|
|
||||||
|
|
||||||
# We disable the Java backend, since we do not need them and they make the closure size much bigger
|
|
||||||
# buildInputs = [ qt4 clucene_core librdf_redland libiodbc ];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://soprano.sourceforge.net/;
|
|
||||||
description = "An object-oriented C++/Qt4 framework for RDF data";
|
|
||||||
license = "LGPL";
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ phreedo ];
|
|
||||||
inherit (qt4.meta) platforms;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
{ stdenv, fetchurl, boost, curl, cmake, xercesc, qt4
|
|
||||||
#, qt4, clucene_core, librdf_redland, libiodbc
|
|
||||||
, pkgconfig }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "libkolabxml-0.8.4";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://mirror.kolabsys.com/pub/releases/${name}.tar.gz";
|
|
||||||
sha256 = "08gdhimnrhizpbvddj7cyz4jwwxrx5a70vz29cy989qgym2vn72q";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ boost curl xercesc ];
|
|
||||||
# buildInputs = [ qt4 clucene_core librdf_redland libiodbc ];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://soprano.sourceforge.net/;
|
|
||||||
description = "An object-oriented C++/Qt4 framework for RDF data";
|
|
||||||
license = "LGPL";
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ phreedo ];
|
|
||||||
inherit (qt4.meta) platforms;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{ stdenv, lib, fetchcvs, cmake, libtool, automake, autoconf }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "libtidy-${version}";
|
|
||||||
|
|
||||||
version = "1.46";
|
|
||||||
|
|
||||||
src = fetchcvs {
|
|
||||||
cvsRoot = ":pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy";
|
|
||||||
module = "tidy";
|
|
||||||
date = "2009-03-25";
|
|
||||||
sha256 = "0bnxn1qgjx1pfyn2q4y24yj1gwqq5bxwf5ksjljqzqzrmjv3q46x";
|
|
||||||
};
|
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
source build/gnuauto/setup.sh
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildInputs = [ libtool automake autoconf ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Validate, correct, and pretty-print HTML files";
|
|
||||||
homepage = http://tidy.sourceforge.net;
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ cstrahan ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
{ stdenv, fetchurl, openexr, ilmbase, ctl }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "openexr_ctl-1.0.1";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = mirror://sourceforge/ampasctl/openexr_ctl-1.0.1.tar.gz;
|
|
||||||
sha256 = "1jg9smpaplal8l14djp184wzk11nwd3dvm4lhkp69kjgw8jdd21d";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ ilmbase ];
|
|
||||||
|
|
||||||
buildInputs = [ openexr ctl ];
|
|
||||||
|
|
||||||
configureFlags = "--with-ilmbase-prefix=${ilmbase}";
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Color Transformation Language";
|
|
||||||
homepage = http://ampasctl.sourceforge.net;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,48 +0,0 @@
|
||||||
diff -rc pdf2xml/pdf2xml/Makefile.linux pdf2xml-new/pdf2xml/Makefile.linux
|
|
||||||
*** pdf2xml/Makefile.linux 2008-02-07 17:43:10.000000000 +0100
|
|
||||||
--- pdf2xml-new/Makefile.linux 2010-08-25 15:41:23.000000000 +0200
|
|
||||||
***************
|
|
||||||
*** 30,36 ****
|
|
||||||
|
|
||||||
|
|
||||||
# Executable name
|
|
||||||
! PDFTOXMLEXE=pdftoxml.exe
|
|
||||||
|
|
||||||
# Main target
|
|
||||||
all: pdftoxmlEXE
|
|
||||||
--- 30,36 ----
|
|
||||||
|
|
||||||
|
|
||||||
# Executable name
|
|
||||||
! PDFTOXMLEXE=pdftoxml
|
|
||||||
|
|
||||||
# Main target
|
|
||||||
all: pdftoxmlEXE
|
|
||||||
diff -rc pdf2xml/pdf2xml/src/pdftoxml.cc pdf2xml-new/pdf2xml/src/pdftoxml.cc
|
|
||||||
*** pdf2xml/src/pdftoxml.cc 2010-04-26 10:58:01.000000000 +0200
|
|
||||||
--- pdf2xml-new/src/pdftoxml.cc 2010-08-25 15:36:15.000000000 +0200
|
|
||||||
***************
|
|
||||||
*** 11,21 ****
|
|
||||||
//
|
|
||||||
//===========================================================================
|
|
||||||
|
|
||||||
#include <aconf.h>
|
|
||||||
- #include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stddef.h>
|
|
||||||
! #include <string.h>
|
|
||||||
#include "parseargs.h"
|
|
||||||
#include "GString.h"
|
|
||||||
#include "gmem.h"
|
|
||||||
--- 11,21 ----
|
|
||||||
//
|
|
||||||
//===========================================================================
|
|
||||||
|
|
||||||
+ #include <string.h>
|
|
||||||
#include <aconf.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stddef.h>
|
|
||||||
! #include <cstdio>
|
|
||||||
#include "parseargs.h"
|
|
||||||
#include "GString.h"
|
|
||||||
#include "gmem.h"
|
|
|
@ -1,64 +0,0 @@
|
||||||
{ stdenv, fetchurl, gpgme, ruby, rubygems, hoe }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "ruby-gpgme-1.0.8";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/ueno/ruby-gpgme/archive/1.0.8.tar.gz";
|
|
||||||
sha256 = "1j7jkl9s8iqcmxf3x6c9kljm19hw1jg6yvwbndmkw43qacdr9nxb";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = ''
|
|
||||||
Ruby-GPGME is a Ruby language binding of GPGME (GnuPG Made
|
|
||||||
Easy)
|
|
||||||
'';
|
|
||||||
homepage = "http://rubyforge.org/projects/ruby-gpgme/";
|
|
||||||
longDescription = ''
|
|
||||||
Ruby-GPGME is a Ruby language binding of GPGME (GnuPG Made Easy).
|
|
||||||
|
|
||||||
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
|
||||||
easier for applications. It provides a High-Level Crypto API for
|
|
||||||
encryption, decryption, signing, signature verification and key
|
|
||||||
management.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ gpgme rubygems hoe ruby ];
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
${ruby}/bin/ruby extconf.rb
|
|
||||||
rake gem
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
export HOME=$TMP/home; mkdir -pv "$HOME"
|
|
||||||
|
|
||||||
# For some reason, the installation phase doesn't work with the default
|
|
||||||
# make install command run by gem (we'll fix it and do it ourselves later)
|
|
||||||
gem install --no-verbose --install-dir "$out/${ruby.gemPath}" \
|
|
||||||
--bindir "$out/bin" --no-rdoc --no-ri pkg/gpgme-1.0.8.gem || true
|
|
||||||
|
|
||||||
# Create a bare-bones gemspec file so that ruby will recognise the gem
|
|
||||||
cat <<EOF >"$out/${ruby.gemPath}/specifications/gpgme.gemspec"
|
|
||||||
Gem::Specification.new do |s|
|
|
||||||
s.name = 'gpgme'
|
|
||||||
s.version = '1.0.8'
|
|
||||||
s.files = Dir['{lib,examples}/**/*']
|
|
||||||
s.rubyforge_project = 'ruby-gpgme'
|
|
||||||
s.require_paths = ['lib']
|
|
||||||
end
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cd "$out/${ruby.gemPath}/gems/gpgme-1.0.8"
|
|
||||||
mkdir src
|
|
||||||
mv lib src
|
|
||||||
sed -i "s/srcdir = ./srcdir = src/" Makefile
|
|
||||||
make install
|
|
||||||
|
|
||||||
mv lib lib.bak
|
|
||||||
mv src/lib lib
|
|
||||||
rmdir src
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,48 +0,0 @@
|
||||||
{ stdenv, fetchurl, ncurses, ruby, rubygems }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "ncursesw-sup-${version}";
|
|
||||||
version = "1.4.6";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/sup-heliotrope/ncursesw-ruby/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "1fzmj5kqh2aql7r7jys8cyf7mb78kz71yc4a6gh74h9s8pybyhh7";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = ''
|
|
||||||
Hacked up version of ncurses gem that supports wide characters for
|
|
||||||
supmua.org
|
|
||||||
'';
|
|
||||||
homepage = ''http://github.com/sup-heliotrope/ncursesw-ruby'';
|
|
||||||
longDescription = ''
|
|
||||||
This wrapper provides access to the functions, macros, global variables
|
|
||||||
and constants of the ncurses library. These are mapped to a Ruby Module
|
|
||||||
named "Ncurses": Functions and external variables are implemented as
|
|
||||||
singleton functions of the Module Ncurses.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ ncurses rubygems ];
|
|
||||||
|
|
||||||
buildPhase = "gem build ncursesw.gemspec";
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
export HOME=$TMP/home; mkdir -pv "$HOME"
|
|
||||||
|
|
||||||
# For some reason, the installation phase doesn't work with the default
|
|
||||||
# make install command run by gem (we'll fix it and do it ourselves later)
|
|
||||||
gem install --no-verbose --install-dir "$out/${ruby.gemPath}" \
|
|
||||||
--bindir "$out/bin" --no-rdoc --no-ri ncursesw-${version}.gem || true
|
|
||||||
|
|
||||||
# Needed for ruby to recognise the gem
|
|
||||||
cp ncursesw.gemspec "$out/${ruby.gemPath}/specifications"
|
|
||||||
|
|
||||||
cd "$out/${ruby.gemPath}/gems/ncursesw-${version}"
|
|
||||||
mkdir src
|
|
||||||
mv lib src
|
|
||||||
sed -i "s/srcdir = ./srcdir = src/" Makefile
|
|
||||||
make install
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue