commit
8204f10a8a
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
makeFlags = "NOGDB=1 FPC=${startFPC}/bin/fpc";
|
makeFlags = "NOGDB=1 FPC=${startFPC}/bin/fpc";
|
||||||
|
|
||||||
installFlags = "INSTALL_PREFIX=\${out}";
|
installFlags = "INSTALL_PREFIX=\${out}";
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for i in $out/lib/fpc/*/ppc*; do
|
for i in $out/lib/fpc/*/ppc*; do
|
||||||
ln -fs $i $out/bin/$(basename $i)
|
ln -fs $i $out/bin/$(basename $i)
|
||||||
@ -35,10 +35,12 @@ stdenv.mkDerivation rec {
|
|||||||
bootstrap = startFPC;
|
bootstrap = startFPC;
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Free Pascal Compiler from a source distribution";
|
description = "Free Pascal Compiler from a source distribution";
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
homepage = https://www.freepascal.org;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
maintainers = [ maintainers.raskin ];
|
||||||
|
license = with licenses; [ gpl2 lgpl2 ];
|
||||||
|
platforms = platforms.linux;
|
||||||
inherit version;
|
inherit version;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -36,9 +36,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "GNU Common Lisp compiler working via GCC";
|
description = "GNU Common Lisp compiler working via GCC";
|
||||||
maintainers = [ stdenv.lib.maintainers.raskin ];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -38,4 +38,11 @@ stdenv.mkDerivation {
|
|||||||
cp fontconfig_patches/free/*.conf $out/etc/fonts/presets/free
|
cp fontconfig_patches/free/*.conf $out/etc/fonts/presets/free
|
||||||
cp fontconfig_patches/ms/*.conf $out/etc/fonts/presets/ms
|
cp fontconfig_patches/ms/*.conf $out/etc/fonts/presets/ms
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Font configuration files, patches, scripts and source packages (Infinality & friends)";
|
||||||
|
homepage = https://github.com/bohoomil/fontconfig-ultimate;
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -14,10 +14,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook unzip ];
|
nativeBuildInputs = [ autoreconfHook unzip ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "SyncML client sdk by Funambol project";
|
description = "SyncML client sdk by Funambol project";
|
||||||
homepage = http://www.funambol.com;
|
homepage = http://www.funambol.com;
|
||||||
maintainers = [ ];
|
license = licenses.agpl3;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation (rec {
|
|||||||
homepage = https://people.gnome.org/~veillard/gamin/;
|
homepage = https://people.gnome.org/~veillard/gamin/;
|
||||||
description = "A file and directory monitoring system";
|
description = "A file and directory monitoring system";
|
||||||
maintainers = with maintainers; [ lovek323 ];
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
|
license = licenses.gpl2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ stdenv, fetchurl, gettext, gobjectIntrospection, pkgconfig, meson, ninja, glibcLocales, git, vala, glib, zlib }:
|
{ stdenv, fetchurl, gettext, gobjectIntrospection, pkgconfig
|
||||||
|
, meson, ninja, glibcLocales, git, vala, glib, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gcab-${version}";
|
name = "gcab-${version}";
|
||||||
@ -22,6 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.lgpl21;
|
||||||
maintainers = [ maintainers.lethalman ];
|
maintainers = [ maintainers.lethalman ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -72,6 +72,7 @@ in stdenv.mkDerivation rec {
|
|||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
description = "Kernel module and library that allows filesystems to be implemented in user space";
|
description = "Kernel module and library that allows filesystems to be implemented in user space";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ gpl2 lgpl21 ];
|
||||||
maintainers = [ maintainers.primeos ];
|
maintainers = [ maintainers.primeos ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "fxload-2002_04_11";
|
name = "fxload-2002_04_11";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/linux-hotplug/fxload-2002_04_11.tar.gz;
|
url = mirror://sourceforge/linux-hotplug/fxload-2002_04_11.tar.gz;
|
||||||
sha256 = "1hql93bp3dxrv1p67nc63xsbqwljyynm997ysldrc3n9ifi6s48m";
|
sha256 = "1hql93bp3dxrv1p67nc63xsbqwljyynm997ysldrc3n9ifi6s48m";
|
||||||
@ -27,9 +27,10 @@ stdenv.mkDerivation {
|
|||||||
mkdir -p $out/share/usb
|
mkdir -p $out/share/usb
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://linux-hotplug.sourceforge.net/?selected=usb;
|
homepage = http://linux-hotplug.sourceforge.net/?selected=usb;
|
||||||
description = "Tool to upload firmware to Cypress EZ-USB microcontrollers";
|
description = "Tool to upload firmware to Cypress EZ-USB microcontrollers";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -43,4 +43,10 @@ stdenv.mkDerivation rec {
|
|||||||
passthru = {
|
passthru = {
|
||||||
inherit env ruby;
|
inherit env ruby;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Web-based conference planning and management system";
|
||||||
|
homepage = https://github.com/frab/frab;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,9 +18,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Samba mounted via FUSE";
|
description = "Samba mounted via FUSE";
|
||||||
homepage = http://www.ricardis.tudelft.nl/~vincent/fusesmb/;
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,10 +10,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
|
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://fping.org/;
|
homepage = http://fping.org/;
|
||||||
description = "Send ICMP echo probes to network hosts";
|
description = "Send ICMP echo probes to network hosts";
|
||||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
maintainers = with maintainers; [ the-kenny ];
|
||||||
platforms = with stdenv.lib.platforms; all;
|
license = licenses.bsd0;
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user