From cf8a716baa2be5522121bfc4b0e03127742f54e7 Mon Sep 17 00:00:00 2001 From: lostdj Date: Sat, 27 Dec 2014 11:28:38 +0300 Subject: SmartGitHg: update from 6.0.6 to 6.5.3. --- .../version-management/smartgithg/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/smartgithg/default.nix b/pkgs/applications/version-management/smartgithg/default.nix index d729159316d..2ddb1b5773f 100644 --- a/pkgs/applications/version-management/smartgithg/default.nix +++ b/pkgs/applications/version-management/smartgithg/default.nix @@ -7,7 +7,7 @@ }: let - the_version = "6_0_6"; + the_version = "6_5_3"; in @@ -15,9 +15,9 @@ stdenv.mkDerivation rec { name = "smartgithg-${the_version}"; src = fetchurl { - url = "http://www.syntevo.com/download/smartgithg/" + - "smartgithg-generic-${the_version}.tar.gz"; - sha256 = "13e41560138ef18395fbe0bf56d4d29e8614eee004d51d7dd03381080d8426e6"; + url = "http://www.syntevo.com/download/smartgit/" + + "smartgit-generic-${the_version}.tar.gz"; + sha256 = "0hz1y29ipls58fizr27w6rbv7v7qbbc1h70xvjjd8c94k9ajmav9"; }; buildInputs = [ @@ -40,24 +40,26 @@ stdenv.mkDerivation rec { in '' tar xvzf $src mkdir -pv $out - # unpacking should have produced a dir named ${name} - cp -a ${name} $out + mkdir -pv ${pkg_path} + # unpacking should have produced a dir named 'smartgit' + cp -a smartgit/* ${pkg_path} mkdir -pv ${bin_path} [ -d ${jre}/lib/openjdk ] \ && jre=${jre}/lib/openjdk \ || jre=${jre} - makeWrapper ${pkg_path}/bin/smartgithg.sh ${bin_path}/smartgithg \ + makeWrapper ${pkg_path}/bin/smartgit.sh ${bin_path}/smartgit \ --prefix PATH : ${runtime_paths} \ --prefix LD_LIBRARY_PATH : ${runtime_lib_paths} \ --prefix JRE_HOME : ${jre} \ --prefix JAVA_HOME : ${jre} \ --prefix SMARTGITHG_JAVA_HOME : ${jre} patchShebangs $out + cp ${bin_path}/smartgit ${bin_path}/smartgithg ''; meta = with stdenv.lib; { description = "GUI for Git, Mercurial, Subversion"; - homepage = http://www.syntevo.com/smartgithg/; + homepage = http://www.syntevo.com/smartgit/; license = licenses.unfree; platforms = platforms.linux; }; -- cgit 1.4.1 From c64257b8e5d36bb71e4e773b9373e35b9b9b0e1c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 30 Dec 2014 03:31:03 +0100 Subject: Fix user-facing typos (mainly in descriptions) --- nixos/modules/security/duosec.nix | 4 ++-- nixos/modules/services/mail/mlmmj.nix | 2 +- nixos/modules/services/monitoring/cadvisor.nix | 2 +- nixos/modules/services/monitoring/statsd.nix | 4 ++-- nixos/modules/services/network-filesystems/nfsd.nix | 2 +- nixos/modules/services/networking/i2pd.nix | 4 ++-- nixos/modules/services/networking/tox-bootstrapd.nix | 4 ++-- nixos/modules/services/web-servers/zope2.nix | 2 +- nixos/modules/system/boot/systemd.nix | 6 +++--- nixos/modules/tasks/filesystems/nfs.nix | 4 ++-- nixos/modules/virtualisation/qemu-vm.nix | 2 +- pkgs/applications/audio/transcode/default.nix | 2 +- pkgs/applications/misc/sqliteman/default.nix | 2 +- .../version-management/git-and-tools/git-bz/default.nix | 2 +- pkgs/applications/video/shotcut/default.nix | 2 +- pkgs/development/compilers/rustc/common.nix | 4 ++-- pkgs/development/libraries/gdome2/default.nix | 2 +- pkgs/development/libraries/hunspell/default.nix | 2 +- pkgs/development/libraries/libcdio/0.82.nix | 2 +- pkgs/development/libraries/libcdio/default.nix | 2 +- pkgs/development/libraries/readline/6.2.nix | 2 +- pkgs/development/libraries/readline/6.3.nix | 2 +- pkgs/development/libraries/slib/default.nix | 2 +- pkgs/development/libraries/ti-rpc/default.nix | 2 +- pkgs/development/misc/avr-gcc-with-avr-libc/default.nix | 2 +- pkgs/development/ocaml-modules/tyxml/default.nix | 2 +- pkgs/development/tools/build-managers/cargo/common.nix | 2 +- pkgs/development/tools/ocaml/ocp-build/default.nix | 2 +- pkgs/games/fairymax/default.nix | 2 +- pkgs/games/hedgewars/default.nix | 2 +- pkgs/games/openttd/default.nix | 2 +- pkgs/misc/emulators/stella/default.nix | 2 +- pkgs/misc/emulators/uae/default.nix | 2 +- pkgs/tools/X11/sselp/default.nix | 2 +- pkgs/tools/compression/kzipmix/default.nix | 2 +- pkgs/tools/graphics/pngout/default.nix | 2 +- pkgs/tools/misc/autojump/default.nix | 2 +- pkgs/tools/misc/unclutter/default.nix | 2 +- pkgs/tools/networking/bwm-ng/default.nix | 2 +- pkgs/tools/security/gnupg/20.nix | 2 +- pkgs/tools/security/haveged/default.nix | 2 +- pkgs/tools/security/opensc-dnie-wrapper/default.nix | 2 +- pkgs/tools/text/multitran/mtutils/default.nix | 2 +- pkgs/tools/typesetting/tex/latex2html/default.nix | 2 +- pkgs/top-level/perl-packages.nix | 2 +- pkgs/top-level/python-packages.nix | 4 ++-- 46 files changed, 55 insertions(+), 55 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/nixos/modules/security/duosec.nix b/nixos/modules/security/duosec.nix index 9893e63fb24..0e3a54325ca 100644 --- a/nixos/modules/security/duosec.nix +++ b/nixos/modules/security/duosec.nix @@ -110,7 +110,7 @@ in default = false; description = '' Print the contents of /etc/motd to screen - after a succesful login. + after a successful login. ''; }; @@ -145,7 +145,7 @@ in When $DUO_PASSCODE is non-empty, it will override autopush. The SSH client will need SendEnv DUO_PASSCODE in - its configuration, and the SSH server will similarily need + its configuration, and the SSH server will similarly need AcceptEnv DUO_PASSCODE. ''; }; diff --git a/nixos/modules/services/mail/mlmmj.nix b/nixos/modules/services/mail/mlmmj.nix index 637974f05cd..db3a266d011 100644 --- a/nixos/modules/services/mail/mlmmj.nix +++ b/nixos/modules/services/mail/mlmmj.nix @@ -90,7 +90,7 @@ in enable = true; recipientDelimiter= "+"; extraMasterConf = '' - mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-recieve -F -L ${spoolDir}/$nextHop + mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L ${spoolDir}/$nextHop ''; extraAliases = concatMapStrings (alias cfg.listDomain) cfg.mailLists; diff --git a/nixos/modules/services/monitoring/cadvisor.nix b/nixos/modules/services/monitoring/cadvisor.nix index d9c165970ec..0a06291da2a 100644 --- a/nixos/modules/services/monitoring/cadvisor.nix +++ b/nixos/modules/services/monitoring/cadvisor.nix @@ -11,7 +11,7 @@ in { enable = mkOption { default = false; type = types.bool; - description = "Wherther to enable cadvisor service."; + description = "Whether to enable cadvisor service."; }; host = mkOption { diff --git a/nixos/modules/services/monitoring/statsd.nix b/nixos/modules/services/monitoring/statsd.nix index 942ce72f6a3..7d7ca27bb2f 100644 --- a/nixos/modules/services/monitoring/statsd.nix +++ b/nixos/modules/services/monitoring/statsd.nix @@ -53,7 +53,7 @@ in }; mgmt_address = mkOption { - description = "Address to run managment TCP interface on"; + description = "Address to run management TCP interface on"; default = "127.0.0.1"; type = types.str; }; @@ -65,7 +65,7 @@ in }; backends = mkOption { - description = "List of backends statsd will use for data persistance"; + description = "List of backends statsd will use for data persistence"; default = ["graphite"]; example = ["graphite" pkgs.nodePackages."statsd-influxdb-backend"]; type = types.listOf (types.either types.str types.package); diff --git a/nixos/modules/services/network-filesystems/nfsd.nix b/nixos/modules/services/network-filesystems/nfsd.nix index 9b317e96884..33b7ec3d9f1 100644 --- a/nixos/modules/services/network-filesystems/nfsd.nix +++ b/nixos/modules/services/network-filesystems/nfsd.nix @@ -61,7 +61,7 @@ in default = null; example = 4002; description = '' - Use fixed port for rpc.mountd, usefull if server is behind firewall. + Use fixed port for rpc.mountd, useful if server is behind firewall. ''; }; diff --git a/nixos/modules/services/networking/i2pd.nix b/nixos/modules/services/networking/i2pd.nix index d0127fd3f75..95b0ae59ff3 100644 --- a/nixos/modules/services/networking/i2pd.nix +++ b/nixos/modules/services/networking/i2pd.nix @@ -142,7 +142,7 @@ in type = types.int; default = 80; description = '' - Port to forward incoming trafic to. 80 by default. + Port to forward incoming traffic to. 80 by default. ''; }; keyFile = mkOption { @@ -195,4 +195,4 @@ in }; }; } -# \ No newline at end of file +# diff --git a/nixos/modules/services/networking/tox-bootstrapd.nix b/nixos/modules/services/networking/tox-bootstrapd.nix index 65aa87be44c..c1f945773e2 100644 --- a/nixos/modules/services/networking/tox-bootstrapd.nix +++ b/nixos/modules/services/networking/tox-bootstrapd.nix @@ -24,7 +24,7 @@ in default = false; description = '' - Whether to enable the Tox DHT boostrap daemon. + Whether to enable the Tox DHT bootstrap daemon. ''; }; @@ -45,7 +45,7 @@ in default = ""; description = '' - Configuration for boostrap daemon. + Configuration for bootstrap daemon. See and . ''; diff --git a/nixos/modules/services/web-servers/zope2.nix b/nixos/modules/services/web-servers/zope2.nix index 21117118457..bbe4d10f83d 100644 --- a/nixos/modules/services/web-servers/zope2.nix +++ b/nixos/modules/services/web-servers/zope2.nix @@ -24,7 +24,7 @@ let http_address = mkOption { default = "localhost:8080"; type = types.string; - description = "Give a port and adress for the HTTP server."; + description = "Give a port and address for the HTTP server."; }; user = mkOption { diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 05f8c8009bf..cd7f2ed7b93 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -695,21 +695,21 @@ in default = {}; type = types.attrsOf types.optionSet; options = [ linkOptions ]; - description = "Definiton of systemd network links."; + description = "Definition of systemd network links."; }; systemd.network.netdevs = mkOption { default = {}; type = types.attrsOf types.optionSet; options = [ netdevOptions ]; - description = "Definiton of systemd network devices."; + description = "Definition of systemd network devices."; }; systemd.network.networks = mkOption { default = {}; type = types.attrsOf types.optionSet; options = [ networkOptions networkConfig ]; - description = "Definiton of systemd networks."; + description = "Definition of systemd networks."; }; systemd.network.units = mkOption { diff --git a/nixos/modules/tasks/filesystems/nfs.nix b/nixos/modules/tasks/filesystems/nfs.nix index 75c4f93c691..79de6556f25 100644 --- a/nixos/modules/tasks/filesystems/nfs.nix +++ b/nixos/modules/tasks/filesystems/nfs.nix @@ -38,7 +38,7 @@ in default = null; example = 4000; description = '' - Use fixed port for rpc.statd, usefull if NFS server is behind firewall. + Use fixed port for rpc.statd, useful if NFS server is behind firewall. ''; }; lockdPort = mkOption { @@ -46,7 +46,7 @@ in example = 4001; description = '' Use fixed port for NFS lock manager kernel module (lockd/nlockmgr), - usefull if NFS server is behind firewall. + useful if NFS server is behind firewall. ''; }; }; diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 42986aa3e03..33c64cc890e 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -266,7 +266,7 @@ in Networking-related command-line options that should be passed to qemu. The default is to use userspace networking (slirp). - If you override this option, be adviced to keep + If you override this option, be advised to keep ''${QEMU_NET_OPTS:+,$QEMU_NET_OPTS} (as seen in the default) to keep the default runtime behaviour. ''; diff --git a/pkgs/applications/audio/transcode/default.nix b/pkgs/applications/audio/transcode/default.nix index c414992a12d..f47c8fa2eec 100644 --- a/pkgs/applications/audio/transcode/default.nix +++ b/pkgs/applications/audio/transcode/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - description = "Suite of command line utilities for transcoding video and audio codecs, and for converting beween different container formats"; + description = "Suite of command line utilities for transcoding video and audio codecs, and for converting between different container formats"; homepage = http://www.transcoding.org/; license = licenses.lgpl2Plus; platforms = platforms.linux; diff --git a/pkgs/applications/misc/sqliteman/default.nix b/pkgs/applications/misc/sqliteman/default.nix index 803dfe075c1..f655a0f8c26 100644 --- a/pkgs/applications/misc/sqliteman/default.nix +++ b/pkgs/applications/misc/sqliteman/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "Sqliteman is simple but powerfull Sqlite3 GUI database manager."; + description = "A simple but powerful Sqlite3 GUI database manager"; homepage = http://sqliteman.yarpen.cz/; license = licenses.gpl2Plus; platforms = platforms.linux; diff --git a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix index 4c4ff62901e..4015867b0eb 100644 --- a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { git-bz is a tool for integrating the Git command line with the Bugzilla bug-tracking system. Operations such as attaching patches to bugs, applying patches in bugs to your current tree, and closing bugs - once you've pushed the fixes publically can be done completely from + once you've pushed the fixes publicly can be done completely from the command line without having to go to your web browser. Authentication for git-bz is done by reading the cookies for the diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix index 484e28972cb..9ad739a361d 100644 --- a/pkgs/applications/video/shotcut/default.nix +++ b/pkgs/applications/video/shotcut/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A free, open source, cross-platform video editor"; longDescription = '' - An offical binary for Shotcut, which includes all the + An official binary for Shotcut, which includes all the dependencies pinned to specific versions, is provided on http://shotcut.org. diff --git a/pkgs/development/compilers/rustc/common.nix b/pkgs/development/compilers/rustc/common.nix index fdb1195bb82..915b5466634 100644 --- a/pkgs/development/compilers/rustc/common.nix +++ b/pkgs/development/compilers/rustc/common.nix @@ -11,7 +11,7 @@ then "macos-i386" else if stdenv.system == "x86_64-darwin" then "macos-x86_64" - else abort "no snapshot to boostrap for this platform (missing platform url suffix)"; + else abort "no snapshot to bootstrap for this platform (missing platform url suffix)"; target = if stdenv.system == "i686-linux" then "i686-unknown-linux-gnu" @@ -21,7 +21,7 @@ then "i686-apple-darwin" else if stdenv.system == "x86_64-darwin" then "x86_64-apple-darwin" - else abort "no snapshot to boostrap for this platform (missing target triple"; + else abort "no snapshot to bootstrap for this platform (missing target triple"; meta = with stdenv.lib; { homepage = http://www.rust-lang.org/; diff --git a/pkgs/development/libraries/gdome2/default.nix b/pkgs/development/libraries/gdome2/default.nix index f16a39e6ab0..bf9b645c8f5 100644 --- a/pkgs/development/libraries/gdome2/default.nix +++ b/pkgs/development/libraries/gdome2/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { meta = { homepage = http://gdome2.cs.unibo.it/; - description = "DOM C library developped for the Gnome project"; + description = "DOM C library developed for the Gnome project"; license = stdenv.lib.licenses.lgpl21Plus; maintainers = [ stdenv.lib.maintainers.roconnor ]; broken = true; diff --git a/pkgs/development/libraries/hunspell/default.nix b/pkgs/development/libraries/hunspell/default.nix index 9ae1a5cf88a..98f6511f391 100644 --- a/pkgs/development/libraries/hunspell/default.nix +++ b/pkgs/development/libraries/hunspell/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { Main features: * Extended support for language peculiarities; Unicode character encoding, compounding and complex morphology. - * Improved suggestion using n-gram similarity, rule and dictionary based pronounciation data. + * Improved suggestion using n-gram similarity, rule and dictionary based pronunciation data. * Morphological analysis, stemming and generation. * Hunspell is based on MySpell and works also with MySpell dictionaries. * C++ library under GPL/LGPL/MPL tri-license. diff --git a/pkgs/development/libraries/libcdio/0.82.nix b/pkgs/development/libraries/libcdio/0.82.nix index db4af40afbd..2b4be7ae230 100644 --- a/pkgs/development/libraries/libcdio/0.82.nix +++ b/pkgs/development/libraries/libcdio/0.82.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = { description = "A library for OS-independent CD-ROM and CD image access"; longDescription = '' - GNU libcdio is a library for OS-idependent CD-ROM and + GNU libcdio is a library for OS-independent CD-ROM and CD image access. It includes a library for working with ISO-9660 filesystems (libiso9660), as well as utility programs such as an audio CD player and an extractor. diff --git a/pkgs/development/libraries/libcdio/default.nix b/pkgs/development/libraries/libcdio/default.nix index 02dd10841c1..4188306128e 100644 --- a/pkgs/development/libraries/libcdio/default.nix +++ b/pkgs/development/libraries/libcdio/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = { description = "A library for OS-independent CD-ROM and CD image access"; longDescription = '' - GNU libcdio is a library for OS-idependent CD-ROM and + GNU libcdio is a library for OS-independent CD-ROM and CD image access. It includes a library for working with ISO-9660 filesystems (libiso9660), as well as utility programs such as an audio CD player and an extractor. diff --git a/pkgs/development/libraries/readline/6.2.nix b/pkgs/development/libraries/readline/6.2.nix index f50331ba684..dfdb86901c2 100644 --- a/pkgs/development/libraries/readline/6.2.nix +++ b/pkgs/development/libraries/readline/6.2.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (rec { reedit those lines, and perform csh-like history expansion on previous commands. - The history facilites are also placed into a separate library, + The history facilities are also placed into a separate library, the History library, as part of the build process. The History library may be used without Readline in applications which desire its capabilities. diff --git a/pkgs/development/libraries/readline/6.3.nix b/pkgs/development/libraries/readline/6.3.nix index ea459f291b3..98ebcdabebe 100644 --- a/pkgs/development/libraries/readline/6.3.nix +++ b/pkgs/development/libraries/readline/6.3.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { reedit those lines, and perform csh-like history expansion on previous commands. - The history facilites are also placed into a separate library, + The history facilities are also placed into a separate library, the History library, as part of the build process. The History library may be used without Readline in applications which desire its capabilities. diff --git a/pkgs/development/libraries/slib/default.nix b/pkgs/development/libraries/slib/default.nix index 02e7dc24159..daf716296a1 100644 --- a/pkgs/development/libraries/slib/default.nix +++ b/pkgs/development/libraries/slib/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { provides a platform independent framework for using packages of Scheme procedures and syntax. As distributed, SLIB contains useful packages for all Scheme implementations. Its catalog can be transparently - extended to accomodate packages specific to a site, implementation, + extended to accommodate packages specific to a site, implementation, user, or directory. SLIB supports Bigloo, Chez, ELK 3.0, Gambit 4.0, Guile, JScheme, Kawa, diff --git a/pkgs/development/libraries/ti-rpc/default.nix b/pkgs/development/libraries/ti-rpc/default.nix index 9b08b8d5d90..a85f8a6b11c 100644 --- a/pkgs/development/libraries/ti-rpc/default.nix +++ b/pkgs/development/libraries/ti-rpc/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { migrated their SunRPC library to a TI-RPC (Transport Independent RPC) implementation. This implementation allows the support of other transports than UDP and TCP over IPv4. FreeBSD provides a - TI-RPC library ported from NetBSD with improvments. This library + TI-RPC library ported from NetBSD with improvements. This library already supports IPv6. So, the FreeBSD release 5.2.1 TI-RPC has been ported to replace the SunRPC of the glibc. ''; diff --git a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix index 1f54d132dcc..8c0854ef3de 100644 --- a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix +++ b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation { }; meta = with stdenv.lib; { - description = "AVR developement environment including binutils, avr-gcc and avr-libc"; + description = "AVR development environment including binutils, avr-gcc and avr-libc"; # I've tried compiling the packages separately.. too much hassle. This just works. Fine. license = ["GPL" "LGPL"]; # see single packages .. homepage = []; # dito diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index 77cf0638255..265b94392b4 100644 --- a/pkgs/development/ocaml-modules/tyxml/default.nix +++ b/pkgs/development/ocaml-modules/tyxml/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { homepage = http://ocsigen.org/tyxml/; - description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML ouput, using static typing"; + description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; license = licenses.lgpl21; platforms = ocaml.meta.platforms; maintainers = with maintainers; [ diff --git a/pkgs/development/tools/build-managers/cargo/common.nix b/pkgs/development/tools/build-managers/cargo/common.nix index 04eaec9daef..00bf4aa746a 100644 --- a/pkgs/development/tools/build-managers/cargo/common.nix +++ b/pkgs/development/tools/build-managers/cargo/common.nix @@ -11,7 +11,7 @@ rec { then "i686-apple-darwin" else if stdenv.system == "x86_64-darwin" then "x86_64-apple-darwin" - else throw "no snapshot to boostrap for this platform (missing platform url suffix)"; + else throw "no snapshot to bootstrap for this platform (missing platform url suffix)"; snapshotHash = if stdenv.system == "i686-linux" then "4dea04e278192c5409f43794a98f20a8f59df2d9" diff --git a/pkgs/development/tools/ocaml/ocp-build/default.nix b/pkgs/development/tools/ocaml/ocp-build/default.nix index 4970d641643..dc846acb500 100644 --- a/pkgs/development/tools/ocaml/ocp-build/default.nix +++ b/pkgs/development/tools/ocaml/ocp-build/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation { ocp-build is a build system for OCaml application, based on simple descriptions of packages. ocp-build combines the descriptions of packages, and optimize the parallel compilation of files depending on - the number of cores and the automatically-infered dependencies + the number of cores and the automatically-inferred dependencies between source files. ''; license = licenses.gpl3; diff --git a/pkgs/games/fairymax/default.nix b/pkgs/games/fairymax/default.nix index 85fbd2d6a3b..3ae4ee7f205 100644 --- a/pkgs/games/fairymax/default.nix +++ b/pkgs/games/fairymax/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { A version of micro-Max that reads the piece description from a file fmax.ini, so that arbitrary fairy pieces can be implemented. This version (4.8J) supports up to 15 piece types, - and board sizes upto 12x8 board. A Linux port exists in the + and board sizes up to 12x8. A Linux port exists in the format of a debian package. ''; license = stdenv.lib.licenses.free ; diff --git a/pkgs/games/hedgewars/default.nix b/pkgs/games/hedgewars/default.nix index 3dbc86a7378..3768375d625 100644 --- a/pkgs/games/hedgewars/default.nix +++ b/pkgs/games/hedgewars/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "Turn-based strategy artillery game similiar to Worms"; + description = "Turn-based strategy artillery game similar to Worms"; homepage = http://hedgewars.org/; license = licenses.gpl2; longDescription = '' diff --git a/pkgs/games/openttd/default.nix b/pkgs/games/openttd/default.nix index d8ae07705c6..afef33cce2d 100644 --- a/pkgs/games/openttd/default.nix +++ b/pkgs/games/openttd/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { In multiplayer networked mode, players may: - play competitively as different businesses - - play cooperatively controling the same business + - play cooperatively controlling the same business - observe as spectators ''; homepage = http://www.openttd.org/; diff --git a/pkgs/misc/emulators/stella/default.nix b/pkgs/misc/emulators/stella/default.nix index d26b5281efa..198226c759a 100644 --- a/pkgs/misc/emulators/stella/default.nix +++ b/pkgs/misc/emulators/stella/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { the GNU General Public License (GPL). Stella was originally developed for Linux by Bradford W. Mott, and is currently maintained by Stephen Anthony. - As of its 3.5 release, Stella is officialy donationware. + As of its 3.5 release, Stella is officially donationware. ''; homepage = http://stella.sourceforge.net/; license = licenses.gpl2; diff --git a/pkgs/misc/emulators/uae/default.nix b/pkgs/misc/emulators/uae/default.nix index 0fa5a08d2dc..85fc6df9520 100644 --- a/pkgs/misc/emulators/uae/default.nix +++ b/pkgs/misc/emulators/uae/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation { buildInputs = [ pkgconfig gtk alsaLib SDL ]; meta = { - description = "Ultimate/Unix/Unusuable Amiga Emulator"; + description = "Ultimate/Unix/Unusable Amiga Emulator"; license = stdenv.lib.licenses.gpl2Plus; homepage = http://www.amigaemulator.org; maintainers = [ stdenv.lib.maintainers.sander ]; diff --git a/pkgs/tools/X11/sselp/default.nix b/pkgs/tools/X11/sselp/default.nix index 6ef7128dd4c..b0bf8a10169 100644 --- a/pkgs/tools/X11/sselp/default.nix +++ b/pkgs/tools/X11/sselp/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://tools.suckless.org/sselp"; - description = "Prints the X selection to stdout, usefull in scripts"; + description = "Prints the X selection to stdout, useful in scripts"; license = stdenv.lib.licenses.mit; maintainers = [stdenv.lib.maintainers.magnetophon ]; platforms = stdenv.lib.platforms.linux; diff --git a/pkgs/tools/compression/kzipmix/default.nix b/pkgs/tools/compression/kzipmix/default.nix index bff8068db60..f768189040b 100644 --- a/pkgs/tools/compression/kzipmix/default.nix +++ b/pkgs/tools/compression/kzipmix/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { ''; meta = { - description = "A tool that agressively optimizes the sizes of Zip archives"; + description = "A tool that aggressively optimizes the sizes of Zip archives"; license = stdenv.lib.licenses.unfree; homepage = http://advsys.net/ken/utils.htm; maintainers = [ stdenv.lib.maintainers.sander ]; diff --git a/pkgs/tools/graphics/pngout/default.nix b/pkgs/tools/graphics/pngout/default.nix index ff2a18c9fed..471823ed923 100644 --- a/pkgs/tools/graphics/pngout/default.nix +++ b/pkgs/tools/graphics/pngout/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { ''; meta = { - description = "A tool that agressively optimizes the sizes of PNG images"; + description = "A tool that aggressively optimizes the sizes of PNG images"; license = stdenv.lib.licenses.unfree; homepage = http://advsys.net/ken/utils.htm; maintainers = [ stdenv.lib.maintainers.sander ]; diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix index a92b4ae3b1b..a94ad14ca22 100644 --- a/pkgs/tools/misc/autojump/default.nix +++ b/pkgs/tools/misc/autojump/default.nix @@ -42,7 +42,7 @@ in works by maintaining a database of the directories you use the most from the command line. The jstat command shows you the current contents of the database. You need to work a little - bit before the database becomes useable. Once your database + bit before the database becomes usable. Once your database is reasonably complete, you can “jump” to a directory by typing "j dirspec", where dirspec is a few characters of the directory you want to jump to. It will jump to the most used diff --git a/pkgs/tools/misc/unclutter/default.nix b/pkgs/tools/misc/unclutter/default.nix index 542530532de..d97ba727bae 100644 --- a/pkgs/tools/misc/unclutter/default.nix +++ b/pkgs/tools/misc/unclutter/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { longDescription = '' Unclutter hides your X mouse cursor when you do not need it, to prevent it from getting in the way. You have only to move the mouse to restore - the mouse cursor. Unclutter is very usefull in tiling wm's where you do + the mouse cursor. Unclutter is very useful in tiling wm's where you do not need the mouse often. Just run it from your .bash_profile like that: diff --git a/pkgs/tools/networking/bwm-ng/default.nix b/pkgs/tools/networking/bwm-ng/default.nix index 4d18c4adb37..c7376ad47b4 100644 --- a/pkgs/tools/networking/bwm-ng/default.nix +++ b/pkgs/tools/networking/bwm-ng/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { Info This was influenced by the old bwm util written by Barney (barney@freewill.tzo.com) which had some issues with faster interfaces and was very simple. Since i had almost all code done anyway for other projects, i decided to create my own version. - I actually dont know if netstat input is usefull at all. I saw this elsewhere, so i added it. Its target is "netstat 1.42 (2001-04-15)" linux or Free/Open/netBSD. If there are other formats i would be happy to add them. + I actually don't know if netstat input is useful at all. I saw this elsewhere, so i added it. Its target is "netstat 1.42 (2001-04-15)" linux or Free/Open/netBSD. If there are other formats i would be happy to add them. (from homepage) ''; diff --git a/pkgs/tools/security/gnupg/20.nix b/pkgs/tools/security/gnupg/20.nix index 58a7cb7e34c..7bace2ef1c4 100644 --- a/pkgs/tools/security/gnupg/20.nix +++ b/pkgs/tools/security/gnupg/20.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { GnuPG is the GNU project's complete and free implementation of the OpenPGP standard as defined by RFC4880. GnuPG allows to encrypt and sign your data and communication, features a - versatile key managment system as well as access modules for all + versatile key management system as well as access modules for all kind of public key directories. GnuPG, also known as GPG, is a command line tool with features for easy integration with other applications. A wealth of frontend applications and libraries diff --git a/pkgs/tools/security/haveged/default.nix b/pkgs/tools/security/haveged/default.nix index 91949cf0893..8f332a53007 100644 --- a/pkgs/tools/security/haveged/default.nix +++ b/pkgs/tools/security/haveged/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { random number generator based upon an adaptation of the HAVEGE algorithm. Haveged was created to remedy low-entropy conditions in the Linux random device that can occur under some workloads, especially on headless servers. Current development - of haveged is directed towards improving overall reliablity and adaptability while minimizing + of haveged is directed towards improving overall reliability and adaptability while minimizing the barriers to using haveged for other tasks. ''; homepage = http://www.issihosts.com/haveged/; diff --git a/pkgs/tools/security/opensc-dnie-wrapper/default.nix b/pkgs/tools/security/opensc-dnie-wrapper/default.nix index b36d99f8ebf..8003073159a 100644 --- a/pkgs/tools/security/opensc-dnie-wrapper/default.nix +++ b/pkgs/tools/security/opensc-dnie-wrapper/default.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { description = "Access to the opensc tools and firefox using the Spanish national ID SmartCard"; longDescription = '' Opensc needs a special configuration and special drivers to use the SmartCard - the Spanish governement provides to the citizens as ID card. + the Spanish government provides to the citizens as ID card. Some wrapper scripts take care for the proper opensc configuration to be used, in order to access the certificates in the SmartCard through the opensc tools or firefox. Opensc will require a pcscd daemon running, managing the access to the card reader. diff --git a/pkgs/tools/text/multitran/mtutils/default.nix b/pkgs/tools/text/multitran/mtutils/default.nix index b03b1b110c4..ca65c567c66 100644 --- a/pkgs/tools/text/multitran/mtutils/default.nix +++ b/pkgs/tools/text/multitran/mtutils/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { meta = { homepage = http://multitran.sourceforge.net/; - description = "Multitran: simple command line utilities for dictionary maintainance"; + description = "Multitran: simple command line utilities for dictionary maintenance"; license = stdenv.lib.licenses.gpl2; maintainers = with stdenv.lib.maintainers; [viric]; platforms = with stdenv.lib.platforms; linux; diff --git a/pkgs/tools/typesetting/tex/latex2html/default.nix b/pkgs/tools/typesetting/tex/latex2html/default.nix index 1d1746e9a4b..f6fc640eb3f 100644 --- a/pkgs/tools/typesetting/tex/latex2html/default.nix +++ b/pkgs/tools/typesetting/tex/latex2html/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.latex2html.org/"; - description = "Convertor written in Perl that converts LaTeX documents to HTML"; + description = "Converter written in Perl that converts LaTeX documents to HTML"; license = stdenv.lib.licenses.gpl2Plus; }; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 812af3e4c3e..813284ede8f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5904,7 +5904,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ TestFatal ]; propagatedBuildInputs = [ ClassMethodModifiers DevelGlobalDestruction ImportInto ModuleRuntime RoleTiny strictures ]; meta = { - description = "Minimalist Object Orientation (with Moose compatiblity)"; + description = "Minimalist Object Orientation (with Moose compatibility)"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ffd81c232a3..77e380105c8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -666,7 +666,7 @@ let meta = with stdenv.lib; { homepage = https://github.com/nicolargo/batinfo; - description = "A simple Python lib to retreive battery information"; + description = "A simple Python lib to retrieve battery information"; license = licenses.lgpl3; platforms = platforms.all; maintainers = [ maintainers.koral ]; @@ -12098,7 +12098,7 @@ let buildInputs = with self; [ requests gevent ]; meta = { - description = "GRequests allows you to use Requests with Gevent to make asyncronous HTTP Requests easily."; + description = "GRequests allows you to use Requests with Gevent to make asynchronous HTTP Requests easily."; homepage = https://github.com/kennethreitz/grequests; license = "bsd"; maintainers = [ stdenv.lib.maintainers.matejc ]; -- cgit 1.4.1 From 10b3d1ad7b5ae70d3c764599a72bddf63b19c7da Mon Sep 17 00:00:00 2001 From: koral Date: Tue, 30 Dec 2014 14:45:30 +0100 Subject: fast-export: update to last revision from upstream --- .../git-and-tools/fast-export/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/git-and-tools/fast-export/default.nix b/pkgs/applications/version-management/git-and-tools/fast-export/default.nix index 562917ec073..5bd6995d204 100644 --- a/pkgs/applications/version-management/git-and-tools/fast-export/default.nix +++ b/pkgs/applications/version-management/git-and-tools/fast-export/default.nix @@ -1,12 +1,13 @@ {stdenv, fetchgit, mercurial, coreutils, git, makeWrapper, subversion}: +with stdenv.lib; stdenv.mkDerivation { name = "fast-export"; src = fetchgit { - url = "git://repo.or.cz/fast-export.git"; - rev = "aaccfba"; - sha256 = "c9d1498e31d32b8271c1e651175794718611f93b4843dea569d831005de0a750"; + url = git://repo.or.cz/fast-export.git; + rev = "d202200fd9daa75cdb37d4cf067d4ca00e269535"; + sha256 = "1ci0jbprs7hqqzq4mqi5b9vlc43lmk2bn2kjx49bdjkqajvlicd7"; }; buildInputs = [mercurial.python mercurial makeWrapper subversion]; @@ -30,10 +31,10 @@ stdenv.mkDerivation { done ''; - # usage: meta = { - description = "import svn, mercurial into git"; - homepage = "http://repo.or.cz/w/fast-export.git"; - license = stdenv.lib.licenses.gpl2; + description = "Import svn, mercurial into git"; + homepage = http://repo.or.cz/w/fast-export.git; + license = licenses.gpl2; + maintainers = [ maintainers.koral ]; }; } -- cgit 1.4.1 From 58ae62b9fade252ba5679e924f26b592b4b611ad Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 2 Jan 2015 14:39:50 -0600 Subject: hub: add git as a dependency of the expression --- pkgs/applications/version-management/git-and-tools/default.nix | 1 + pkgs/applications/version-management/git-and-tools/hub/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 71fb75a2157..3714df5fb6b 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -75,6 +75,7 @@ rec { hub = import ./hub { inherit (rubyLibs) rake; inherit stdenv fetchurl groff makeWrapper; + git = gitBase; }; gitFastExport = import ./fast-export { diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index 8d578c2b466..827fdb1fa8e 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, groff, rake, makeWrapper }: +{ stdenv, fetchurl, git, groff, rake, makeWrapper }: stdenv.mkDerivation rec { name = "hub-${version}"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { ''; fixupPhase = '' - wrapProgram $out/bin/hub --prefix PATH : ${groff}/bin + wrapProgram $out/bin/hub --prefix PATH : ${groff}/bin:${git}/bin ''; meta = { -- cgit 1.4.1 From eba9d0d8fad0a90fa92d7d447c6e46647d36040a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 2 Jan 2015 14:40:31 -0600 Subject: subversion: Add several compiler definitions for Darwin --- pkgs/applications/version-management/subversion/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 6e329ebdf71..a49e5e1033e 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -15,7 +15,7 @@ assert httpServer -> apacheHttpd != null; assert pythonBindings -> swig != null && python != null; assert javahlBindings -> jdk != null && perl != null; -stdenv.mkDerivation rec { +stdenv.mkDerivation (rec { version = "1.8.11"; @@ -77,4 +77,9 @@ stdenv.mkDerivation rec { maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; }; -} +} // stdenv.lib.optionalAttrs stdenv.isDarwin { + CXX = "clang++"; + CC = "clang"; + CPP = "clang -E"; + CXXCPP = "clang++ -E"; +}) -- cgit 1.4.1 From 4b84049bd3e96835e64b399731ae71cfd46ba8a8 Mon Sep 17 00:00:00 2001 From: Kirill Elagin Date: Sun, 4 Jan 2015 02:28:38 +0300 Subject: gitAndTools.hub: Update to 2.x --- .../version-management/git-and-tools/default.nix | 5 +-- .../git-and-tools/hub/default.nix | 50 +++++++++++++++------- 2 files changed, 37 insertions(+), 18 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 3714df5fb6b..891c947e85b 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -73,9 +73,8 @@ rec { }; hub = import ./hub { - inherit (rubyLibs) rake; - inherit stdenv fetchurl groff makeWrapper; - git = gitBase; + inherit go; + inherit stdenv fetchgit; }; gitFastExport = import ./fast-export { diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index 827fdb1fa8e..8f8b9fa5675 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -1,28 +1,48 @@ -{ stdenv, fetchurl, git, groff, rake, makeWrapper }: +{ stdenv, fetchgit, go }: stdenv.mkDerivation rec { name = "hub-${version}"; - version = "1.12.2"; + version = "2.2.0-rc1"; - src = fetchurl { - url = "https://github.com/github/hub/archive/v${version}.tar.gz"; - sha256 = "112yfv9xklsmwv859kypv7hz0a6dj5hkrmjp7z1h40nrljc9mi79"; + src = fetchgit { + url = https://github.com/github/hub.git; + rev = "refs/tags/v${version}"; + sha256 = "1f6r8vlwnmqmr85drfv24vhqx1aacz6s83c2i804v9997n0wrwfm"; }; - buildInputs = [ rake makeWrapper ]; - installPhase = '' - rake install "prefix=$out" + buildInputs = [ go ]; + + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; + + buildPhase = '' + ./script/build ''; - fixupPhase = '' - wrapProgram $out/bin/hub --prefix PATH : ${groff}/bin:${git}/bin + installPhase = '' + mkdir -p "$out/bin" + cp hub "$out/bin/" + + mkdir -p "$out/share/man/man1" + cp "man/hub.1" "$out/share/man/man1/" + + mkdir -p "$out/share/zsh/site-functions" + cp "etc/hub.zsh_completion" "$out/share/zsh/site-functions/_hub" + +# Broken: https://github.com/github/hub/issues/592 +# mkdir -p "$out/etc/bash_completion.d" +# cp "etc/hub.bash_completion.sh" "$out/etc/bash_completion.d/" + +# Should we also install provided git-hooks? +# ? ''; - meta = { - description = "A GitHub specific wrapper for git"; - homepage = "http://defunkt.io/hub/"; - license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ the-kenny ]; + + meta = with stdenv.lib; { + description = "Command-line wrapper for git that makes you better at GitHub"; + + license = licenses.mit; + homepage = https://hub.github.com/; + maintainers = with maintainers; [ the-kenny ]; }; } -- cgit 1.4.1 From d8c600c129ee757f3579dc7a11eb5ea0fe05e4a8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 5 Jan 2015 12:33:15 +0100 Subject: haskell-git-annex: update to version 5.20141231 --- .../version-management/git-and-tools/git-annex/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/git-and-tools/git-annex/default.nix b/pkgs/applications/version-management/git-and-tools/git-annex/default.nix index 3982eff71b5..d4d627d6154 100644 --- a/pkgs/applications/version-management/git-and-tools/git-annex/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-annex/default.nix @@ -18,8 +18,8 @@ cabal.mkDerivation (self: { pname = "git-annex"; - version = "5.20141219"; - sha256 = "1qxvsvys5hrpc5sm6s2ygr7hyrgfjc4qaycp1b0kkwjj4bl4cbvz"; + version = "5.20141231"; + sha256 = "0rrwaclc3mpn39087fs5pgn0axjp5mki0nhj9a3fjjchdwd8wzyf"; isLibrary = false; isExecutable = true; buildDepends = [ -- cgit 1.4.1 From 0b8ac6b791ce13d841aebb8b42d0f6817fe14448 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 6 Jan 2015 14:29:22 +0100 Subject: mercurial: Update to 3.2.4 --- pkgs/applications/version-management/mercurial/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix index 8cb34a7f9fa..c97e9c762a5 100644 --- a/pkgs/applications/version-management/mercurial/default.nix +++ b/pkgs/applications/version-management/mercurial/default.nix @@ -2,7 +2,7 @@ , guiSupport ? false, tk ? null, curses }: let - version = "3.2.2"; + version = "3.2.4"; name = "mercurial-${version}"; in @@ -11,7 +11,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://mercurial.selenic.com/release/${name}.tar.gz"; - sha256 = "1311ba2cgdc17ap8sl7pswzngc702pnkr4cd2rx6znb0w9jzgpmg"; + sha256 = "1g7nfvapxj5k44dyp0p08v37s0zmrj2vl0rjgfd8297x0afidm08"; }; inherit python; # pass it so that the same version can be used in hg2git -- cgit 1.4.1 From c82410eeda78deb3afe898168700772d53361985 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 1 Jan 2015 15:49:20 -0800 Subject: java: Normalize to the default jre / jdk --- nixos/modules/services/monitoring/riemann.nix | 2 +- nixos/modules/services/search/solr.nix | 2 +- nixos/release-small.nix | 2 +- pkgs/applications/editors/idea/default.nix | 4 +--- pkgs/applications/editors/jedit/default.nix | 2 +- pkgs/applications/editors/netbeans/default.nix | 4 ++-- pkgs/applications/networking/remote/ssvnc/default.nix | 4 ++-- pkgs/applications/office/libreoffice/default.nix | 2 +- pkgs/applications/version-management/smartgithg/default.nix | 4 +--- pkgs/build-support/release/ant-build.nix | 2 +- pkgs/development/compilers/aldor/default.nix | 6 +++--- pkgs/development/interpreters/octave/default.nix | 4 ++-- pkgs/development/libraries/portmidi/default.nix | 6 +++--- pkgs/development/mobile/titaniumenv/titaniumsdk-3.1.nix | 2 +- pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix | 2 +- pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix | 2 +- pkgs/development/mobile/titaniumenv/titaniumsdk-3.4.nix | 2 +- pkgs/development/tools/neoload/default.nix | 10 +++++----- pkgs/servers/monitoring/munin/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 10 ++++------ 20 files changed, 36 insertions(+), 42 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/nixos/modules/services/monitoring/riemann.nix b/nixos/modules/services/monitoring/riemann.nix index ab37d717b86..ac5d0134a80 100644 --- a/nixos/modules/services/monitoring/riemann.nix +++ b/nixos/modules/services/monitoring/riemann.nix @@ -17,7 +17,7 @@ let launcher = writeScriptBin "riemann" '' #!/bin/sh - exec ${openjdk}/bin/java ${concatStringsSep "\n" cfg.extraJavaOpts} \ + exec ${jdk}/bin/java ${concatStringsSep "\n" cfg.extraJavaOpts} \ -cp ${classpath} \ riemann.bin ${writeText "riemann-config.clj" riemannConfig} ''; diff --git a/nixos/modules/services/search/solr.nix b/nixos/modules/services/search/solr.nix index 38d9dedbe3c..bc5cbe83cff 100644 --- a/nixos/modules/services/search/solr.nix +++ b/nixos/modules/services/search/solr.nix @@ -22,7 +22,7 @@ let cp common/lib/*.jar $out/lib/ ln -s ${pkgs.ant}/lib/ant/lib/ant.jar $out/lib/ ln -s ${cfg.solrPackage}/lib/ext/* $out/lib/ - ln -s ${pkgs.openjdk}/lib/openjdk/lib/tools.jar $out/lib/ + ln -s ${pkgs.jdk.home}/lib/tools.jar $out/lib/ '' + optionalString (cfg.extraJars != []) '' for f in ${concatStringsSep " " cfg.extraJars}; do cp $f $out/lib diff --git a/nixos/release-small.nix b/nixos/release-small.nix index 07cd672843e..7f53a101bdf 100644 --- a/nixos/release-small.nix +++ b/nixos/release-small.nix @@ -61,12 +61,12 @@ in rec { gettext git imagemagick + jdk linux mysql51 mysql55 nginx nodejs - openjdk openssh php postgresql92 diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index afa1c5682a8..e53292451d3 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -70,9 +70,7 @@ let cp -va . "$out/$name" ln -s "$out/$name/bin/${loName}.png" "$out/share/pixmaps/" - [ -d ${jdk}/lib/openjdk ] \ - && jdk=${jdk}/lib/openjdk \ - || jdk=${jdk} + jdk=${jdk.home} makeWrapper "$out/$name/bin/${loName}.sh" "$out/bin/${loName}" \ --prefix PATH : "${jdk}/bin:${coreutils}/bin:${gnugrep}/bin:${which}/bin:${git}/bin" \ diff --git a/pkgs/applications/editors/jedit/default.nix b/pkgs/applications/editors/jedit/default.nix index 0e11c577fc8..b1972317704 100644 --- a/pkgs/applications/editors/jedit/default.nix +++ b/pkgs/applications/editors/jedit/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation { patch package-files/linux/jedit << EOF 5a6,8 > # specify the correct JAVA_HOME - > JAVA_HOME=${jdk.jre}/lib/openjdk/jre + > JAVA_HOME=${jdk.jre.home}/jre > EOF sed -i "s|/usr/share/jEdit/@jar.filename@|$out/share/jEdit/jedit.jar|g" package-files/linux/jedit diff --git a/pkgs/applications/editors/netbeans/default.nix b/pkgs/applications/editors/netbeans/default.nix index 5a2afebdd5c..79dbb589d23 100644 --- a/pkgs/applications/editors/netbeans/default.nix +++ b/pkgs/applications/editors/netbeans/default.nix @@ -26,8 +26,8 @@ stdenv.mkDerivation { mkdir -p $out/bin makeWrapper $out/netbeans/bin/netbeans $out/bin/netbeans \ --prefix PATH : ${jdk}/bin:${which}/bin \ - --prefix JAVA_HOME : ${jdk}/lib/openjdk \ - --add-flags "--jdkhome ${jdk}/lib/openjdk" + --prefix JAVA_HOME : ${jdk.home} \ + --add-flags "--jdkhome ${jdk.home}" # Create desktop item, so we can pick it from the KDE/GNOME menu mkdir -p $out/share/applications diff --git a/pkgs/applications/networking/remote/ssvnc/default.nix b/pkgs/applications/networking/remote/ssvnc/default.nix index f142395aa57..fad7ef90ceb 100644 --- a/pkgs/applications/networking/remote/ssvnc/default.nix +++ b/pkgs/applications/networking/remote/ssvnc/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, imake, zlib, openjdk, libX11, libXt, libXmu +{ stdenv, fetchurl, imake, zlib, jdk, libX11, libXt, libXmu , libXaw, libXext, libXpm, openjpeg, openssl, tcl, tk }: stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "74df32eb8eaa68b07c9693a232ebe42154617c7f3cbe1d4e68d3fe7c557d618d"; }; - buildInputs = [ imake zlib openjdk libX11 libXt libXmu libXaw libXext libXpm openjpeg openssl ]; + buildInputs = [ imake zlib jdk libX11 libXt libXmu libXaw libXext libXpm openjpeg openssl ]; configurePhase = "makeFlags=PREFIX=$out"; diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 950d0c6ac49..68fcd3838c5 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -213,7 +213,7 @@ stdenv.mkDerivation rec { "--disable-postgresql-sdbc" "--with-package-format=native" "--enable-epm" - "--with-jdk-home=${jdk}/lib/openjdk" + "--with-jdk-home=${jdk.home}" "--with-ant-home=${ant}/lib/ant" "--without-fonts" "--without-myspell-dicts" diff --git a/pkgs/applications/version-management/smartgithg/default.nix b/pkgs/applications/version-management/smartgithg/default.nix index 2ddb1b5773f..5bb201b60d0 100644 --- a/pkgs/applications/version-management/smartgithg/default.nix +++ b/pkgs/applications/version-management/smartgithg/default.nix @@ -44,9 +44,7 @@ stdenv.mkDerivation rec { # unpacking should have produced a dir named 'smartgit' cp -a smartgit/* ${pkg_path} mkdir -pv ${bin_path} - [ -d ${jre}/lib/openjdk ] \ - && jre=${jre}/lib/openjdk \ - || jre=${jre} + jre=${jre.home} makeWrapper ${pkg_path}/bin/smartgit.sh ${bin_path}/smartgit \ --prefix PATH : ${runtime_paths} \ --prefix LD_LIBRARY_PATH : ${runtime_lib_paths} \ diff --git a/pkgs/build-support/release/ant-build.nix b/pkgs/build-support/release/ant-build.nix index 346e139d35d..06875f6b765 100644 --- a/pkgs/build-support/release/ant-build.nix +++ b/pkgs/build-support/release/ant-build.nix @@ -9,7 +9,7 @@ , antBuildInputs ? [] , buildfile ? "build.xml" , ant ? pkgs.ant -, jre ? pkgs.openjdk +, jre ? pkgs.jdk , hydraAntLogger ? pkgs.hydraAntLogger , zip ? pkgs.zip , unzip ? pkgs.unzip diff --git a/pkgs/development/compilers/aldor/default.nix b/pkgs/development/compilers/aldor/default.nix index b1809c9a6d9..1c915fb5a1d 100644 --- a/pkgs/development/compilers/aldor/default.nix +++ b/pkgs/development/compilers/aldor/default.nix @@ -1,5 +1,5 @@ { fetchgit, stdenv, gmp, which, flex, bison, makeWrapper -, autoconf, automake, libtool, openjdk, perl }: +, autoconf, automake, libtool, jdk, perl }: stdenv.mkDerivation { name = "aldor-1.2.0"; @@ -11,7 +11,7 @@ stdenv.mkDerivation { }; buildInputs = [ gmp which flex bison makeWrapper autoconf automake libtool - openjdk perl ]; + jdk perl ]; preConfigure = '' cd aldor ; @@ -22,7 +22,7 @@ stdenv.mkDerivation { for prog in aldor unicl javagen ; do wrapProgram $out/bin/$prog --set ALDORROOT $out \ - --prefix PATH : ${openjdk}/bin \ + --prefix PATH : ${jdk}/bin \ --prefix PATH : ${stdenv.cc}/bin ; done ''; diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index d302a2a6e18..7545e80fd11 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -2,7 +2,7 @@ , libX11, graphicsmagick, pcre, liblapack, pkgconfig, mesa, fltk , fftw, fftwSinglePrec, zlib, curl, qrupdate , qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null -, suitesparse ? null, gnuplot ? null, openjdk ? null, python ? null +, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null }: stdenv.mkDerivation rec { @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ++ (stdenv.lib.optional (hdf5 != null) hdf5) ++ (stdenv.lib.optional (glpk != null) glpk) ++ (stdenv.lib.optional (suitesparse != null) suitesparse) - ++ (stdenv.lib.optional (openjdk != null) openjdk) + ++ (stdenv.lib.optional (jdk != null) jdk) ++ (stdenv.lib.optional (gnuplot != null) gnuplot) ++ (stdenv.lib.optional (python != null) python) ; diff --git a/pkgs/development/libraries/portmidi/default.nix b/pkgs/development/libraries/portmidi/default.nix index 19eb390388b..518eeee9253 100644 --- a/pkgs/development/libraries/portmidi/default.nix +++ b/pkgs/development/libraries/portmidi/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, unzip, cmake, /*openjdk,*/ alsaLib }: +{ stdenv, fetchurl, unzip, cmake, /*jdk,*/ alsaLib }: stdenv.mkDerivation rec { name = "portmidi-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; cmakeFlags = let - #base = "${openjdk}/jre/lib/${openjdk.architecture}"; + #base = "${jdk}/jre/lib/${jdk.architecture}"; in [ "-DPORTMIDI_ENABLE_JAVA=0" /* TODO: Fix Java support. @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { ln -s libportmidi.so "$out/lib/libporttime.so" ''; - buildInputs = [ unzip cmake /*openjdk*/ alsaLib ]; + buildInputs = [ unzip cmake /*jdk*/ alsaLib ]; meta = { homepage = "http://portmedia.sourceforge.net/portmidi/"; diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.1.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.1.nix index 0fc6b7dca50..b46dcfb5b04 100644 --- a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.1.nix +++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.1.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { import os, sys os.environ['PYTHONPATH'] = '$(echo ${python.modules.sqlite3}/lib/python*/site-packages)' - os.environ['JAVA_HOME'] = '${if stdenv.system == "x86_64-darwin" then jdk else "${jdk}/lib/openjdk"}' + os.environ['JAVA_HOME'] = '${jdk.home}' os.execv('$(pwd)/.builder.py', sys.argv) EOF diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix index b8f288131ed..beeb7fed995 100644 --- a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix +++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation { import os, sys os.environ['PYTHONPATH'] = '$(echo ${python.modules.sqlite3}/lib/python*/site-packages)' - os.environ['JAVA_HOME'] = '${if stdenv.system == "x86_64-darwin" then jdk else "${jdk}/lib/openjdk"}' + os.environ['JAVA_HOME'] = '${jdk.home}' os.execv('$(pwd)/.builder.py', sys.argv) EOF diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix index 2d1cd049b14..13009265e07 100644 --- a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix +++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation { import os, sys os.environ['PYTHONPATH'] = '$(echo ${python.modules.sqlite3}/lib/python*/site-packages)' - os.environ['JAVA_HOME'] = '${if stdenv.system == "x86_64-darwin" then jdk else "${jdk}/lib/openjdk"}' + os.environ['JAVA_HOME'] = '${jdk.home}' os.execv('$(pwd)/.builder.py', sys.argv) EOF diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.4.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.4.nix index c8fbb435f30..aba5ab0f697 100644 --- a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.4.nix +++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.4.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation { import os, sys os.environ['PYTHONPATH'] = '$(echo ${python.modules.sqlite3}/lib/python*/site-packages)' - os.environ['JAVA_HOME'] = '${if stdenv.system == "x86_64-darwin" then jdk else "${jdk}/lib/openjdk"}' + os.environ['JAVA_HOME'] = '${jdk.home}' os.execv('$(pwd)/.builder.py', sys.argv) EOF diff --git a/pkgs/development/tools/neoload/default.nix b/pkgs/development/tools/neoload/default.nix index fc9446408de..9c781e6f757 100644 --- a/pkgs/development/tools/neoload/default.nix +++ b/pkgs/development/tools/neoload/default.nix @@ -14,8 +14,8 @@ else assert licenseAccepted; # the installer is very picky and demands 1.7.0.07 let dotInstall4j = path: writeTextFile { name = "dot-install4j"; text = '' - JRE_VERSION ${jre}${path} 1 7 0 7 - JRE_INFO ${jre}${path} 94 + JRE_VERSION ${path} 1 7 0 7 + JRE_INFO ${path} 94 ''; }; responseVarfile = writeTextFile { name = "response.varfile"; text = '' @@ -55,20 +55,20 @@ in stdenv.mkDerivation rec { sed -e 's/^if \[ -f jre.tar.gz/if false /' $src > installer chmod a+x installer - cp ${dotInstall4j ""} .install4j + cp ${dotInstall4j jre} .install4j chmod u+w .install4j sed -e "s|INSTALLDIR|$out|" ${responseVarfile} > response.varfile export HOME=`pwd` - export INSTALL4J_JAVA_HOME=${jre} + export INSTALL4J_JAVA_HOME=${jre.home} export FONTCONFIG_FILE=${fontsConf} bash -ic './installer -q -varfile response.varfile' sed -i 's/Xmx450m/Xmx900m/;s/Xss192k/Xss384k/' $out/lib/neoload/conf/agent.properties for i in $out/bin/*; do - wrapProgram $i --run 'cp ${dotInstall4j "/lib/openjdk/jre"} ~/.install4j' \ + wrapProgram $i --run 'cp ${dotInstall4j "${jre.home}/jre"} ~/.install4j' \ --run 'chmod u+w ~/.install4j' done diff --git a/pkgs/servers/monitoring/munin/default.nix b/pkgs/servers/monitoring/munin/default.nix index b671fbf877a..4d3065b6542 100644 --- a/pkgs/servers/monitoring/munin/default.nix +++ b/pkgs/servers/monitoring/munin/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, which, coreutils, rrdtool, perl, perlPackages -, python, ruby, openjdk, nettools +, python, ruby, jre, nettools }: stdenv.mkDerivation rec { @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { perlPackages.DBDPg python ruby - openjdk + jre # tests perlPackages.TestLongString perlPackages.TestDifferences @@ -91,7 +91,7 @@ stdenv.mkDerivation rec { PERL=${perl}/bin/perl PYTHON=${python}/bin/python RUBY=${ruby}/bin/ruby - JAVARUN=${openjdk}/bin/java + JAVARUN=${jre}/bin/java PLUGINUSER=munin ''; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4f9ce8f3afa..9e7d1b813ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1362,7 +1362,7 @@ let grafx2 = callPackage ../applications/graphics/grafx2 {}; grails = callPackage ../development/web/grails { - jdkPath = "${openjdk}/lib/openjdk"; + jdkPath = jdk.home; }; graphviz = callPackage ../tools/graphics/graphviz { }; @@ -3445,7 +3445,7 @@ let icedtea7_jdk = callPackage ../development/compilers/icedtea rec { jdk = openjdk; - jdkPath = "${openjdk}/lib/openjdk"; + jdkPath = openjdk.home; giflib = giflib_5_0; } // { outputs = [ "out" ]; }; @@ -7617,7 +7617,7 @@ let cassandra = callPackage ../servers/nosql/cassandra { }; apache-jena = callPackage ../servers/nosql/apache-jena/binary.nix { - java = icedtea_jdk; + java = jdk; }; apcupsd = callPackage ../servers/apcupsd { }; @@ -11265,9 +11265,7 @@ let vorbisTools = callPackage ../applications/audio/vorbis-tools { }; - vue = callPackage ../applications/misc/vue { - jre = icedtea_jre; - }; + vue = callPackage ../applications/misc/vue { }; vwm = callPackage ../applications/window-managers/vwm { }; -- cgit 1.4.1 From 947a4c582ee00f874bde61eb3938574c1c7ec1e0 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 11 Jan 2015 18:53:38 +0100 Subject: hub: Fix build with chrooted Nix. The build script is a shell script which has a shebang using /usr/bin/env, which isn't available in a chrooted Nix daemon. Signed-off-by: aszlig --- pkgs/applications/version-management/git-and-tools/hub/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index 8f8b9fa5675..3d8d3cb4355 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { phases = [ "unpackPhase" "buildPhase" "installPhase" ]; buildPhase = '' - ./script/build + sh script/build ''; installPhase = '' -- cgit 1.4.1 From 41b53577a8f2e8ed45ef06ae3f13a92c7c90c3b4 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 13 Jan 2015 22:33:24 +0100 Subject: unmaintain a bunch of packages --- pkgs/applications/audio/aumix/default.nix | 2 +- pkgs/applications/audio/mp3info/default.nix | 2 +- pkgs/applications/editors/emacs-modes/emms/default.nix | 2 +- pkgs/applications/graphics/gimp/plugins/default.nix | 2 +- pkgs/applications/graphics/qtpfsgui/default.nix | 2 +- pkgs/applications/misc/gkrellm/default.nix | 2 +- pkgs/applications/misc/gpsbabel/default.nix | 2 +- pkgs/applications/misc/hello/ex-2/default.nix | 2 +- pkgs/applications/networking/instant-messengers/bitlbee/default.nix | 2 +- pkgs/applications/networking/p2p/gnunet/default.nix | 2 +- pkgs/applications/networking/p2p/gnunet/svn.nix | 2 +- pkgs/applications/office/impressive/default.nix | 2 +- pkgs/applications/science/misc/vite/default.nix | 2 +- pkgs/applications/version-management/git-and-tools/topgit/default.nix | 2 +- pkgs/applications/video/gnash/default.nix | 2 +- pkgs/data/fonts/redhat-liberation-fonts/binary.nix | 1 - pkgs/data/fonts/redhat-liberation-fonts/default.nix | 1 - pkgs/development/compilers/bigloo/default.nix | 2 +- pkgs/development/compilers/gcc/4.4/default.nix | 1 - pkgs/development/compilers/gcc/4.5/default.nix | 1 - pkgs/development/compilers/gcc/4.6/default.nix | 1 - pkgs/development/compilers/gcc/4.8/default.nix | 2 +- pkgs/development/compilers/gcc/4.9/default.nix | 2 +- pkgs/development/compilers/mit-scheme/default.nix | 2 +- pkgs/development/guile-modules/guile-cairo/default.nix | 2 +- pkgs/development/guile-modules/guile-gnome/default.nix | 2 +- pkgs/development/guile-modules/guile-lib/default.nix | 2 +- pkgs/development/guile-modules/guile-ncurses/default.nix | 2 +- pkgs/development/libraries/boehm-gc/default.nix | 2 +- pkgs/development/libraries/commoncpp2/default.nix | 4 +--- pkgs/development/libraries/gdbm/default.nix | 2 +- pkgs/development/libraries/gettext/default.nix | 2 +- pkgs/development/libraries/glibc/common.nix | 2 +- pkgs/development/libraries/gmp/4.3.2.nix | 2 +- pkgs/development/libraries/gmp/5.0.5.nix | 2 +- pkgs/development/libraries/hwloc/default.nix | 2 +- pkgs/development/libraries/libchop/default.nix | 2 +- pkgs/development/libraries/libffi/default.nix | 2 +- pkgs/development/libraries/libsigsegv/default.nix | 2 +- pkgs/development/libraries/libunistring/default.nix | 2 +- pkgs/development/libraries/libxmi/default.nix | 2 +- pkgs/development/libraries/mpc/default.nix | 2 +- pkgs/development/libraries/mpfr/default.nix | 2 +- pkgs/development/libraries/ncurses/default.nix | 2 +- pkgs/development/libraries/nettle/default.nix | 2 +- pkgs/development/libraries/readline/6.2.nix | 2 +- pkgs/development/libraries/readline/6.3.nix | 2 +- pkgs/development/libraries/slib/default.nix | 2 +- pkgs/development/tools/build-managers/gnumake/3.81/default.nix | 2 +- pkgs/development/tools/build-managers/gnumake/3.82/default.nix | 2 +- pkgs/development/tools/build-managers/gnumake/4.0/default.nix | 2 +- pkgs/development/tools/build-managers/gnumake/4.1/default.nix | 2 +- pkgs/development/tools/guile/g-wrap/default.nix | 2 +- pkgs/development/tools/misc/autoconf/default.nix | 2 +- pkgs/development/tools/misc/autogen/default.nix | 2 +- pkgs/development/tools/misc/automake/automake-1.11.x.nix | 2 +- pkgs/development/tools/misc/automake/automake-1.12.x.nix | 2 +- pkgs/development/tools/misc/automake/automake-1.13.x.nix | 2 +- pkgs/development/tools/misc/automake/automake-1.14.x.nix | 2 +- pkgs/development/tools/misc/cflow/default.nix | 2 +- pkgs/development/tools/misc/complexity/default.nix | 2 +- pkgs/development/tools/misc/cppi/default.nix | 2 +- pkgs/development/tools/misc/dejagnu/default.nix | 2 +- pkgs/development/tools/misc/global/default.nix | 2 +- pkgs/development/tools/misc/help2man/default.nix | 2 +- pkgs/development/tools/misc/libtool/libtool2.nix | 2 +- pkgs/os-specific/linux/nfs-utils/default.nix | 2 +- pkgs/servers/unfs3/default.nix | 2 +- pkgs/tools/filesystems/nixpart/0.4/parted.nix | 1 - pkgs/tools/graphics/plotutils/default.nix | 1 - pkgs/tools/misc/parted/default.nix | 1 - pkgs/tools/networking/inetutils/default.nix | 2 +- pkgs/tools/networking/lsh/default.nix | 2 +- pkgs/tools/networking/mailutils/default.nix | 2 +- pkgs/tools/networking/p2p/seeks/default.nix | 1 - pkgs/tools/package-management/guix/default.nix | 2 +- pkgs/tools/security/tor/default.nix | 2 +- pkgs/tools/text/enscript/default.nix | 2 +- pkgs/tools/text/gawk/default.nix | 2 +- pkgs/tools/typesetting/lout/default.nix | 2 +- 80 files changed, 71 insertions(+), 82 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/audio/aumix/default.nix b/pkgs/applications/audio/aumix/default.nix index 41edd51e5f2..f5f0711ecac 100644 --- a/pkgs/applications/audio/aumix/default.nix +++ b/pkgs/applications/audio/aumix/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { homepage = http://www.jpj.net/~trevor/aumix.html; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/mp3info/default.nix b/pkgs/applications/audio/mp3info/default.nix index ede31ac9beb..e4c45c613ee 100644 --- a/pkgs/applications/audio/mp3info/default.nix +++ b/pkgs/applications/audio/mp3info/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/applications/editors/emacs-modes/emms/default.nix b/pkgs/applications/editors/emacs-modes/emms/default.nix index a44be28399d..1e9843447d9 100644 --- a/pkgs/applications/editors/emacs-modes/emms/default.nix +++ b/pkgs/applications/editors/emacs-modes/emms/default.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.unix; broken = true; }; diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix index c5350228dcf..5f43abfcfc1 100644 --- a/pkgs/applications/graphics/gimp/plugins/default.nix +++ b/pkgs/applications/graphics/gimp/plugins/default.nix @@ -237,7 +237,7 @@ rec { homepage = http://lensfun.sebastiankraft.net/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; }; }; diff --git a/pkgs/applications/graphics/qtpfsgui/default.nix b/pkgs/applications/graphics/qtpfsgui/default.nix index cd8c76dc42c..efa245cc7e9 100644 --- a/pkgs/applications/graphics/qtpfsgui/default.nix +++ b/pkgs/applications/graphics/qtpfsgui/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/misc/gkrellm/default.nix b/pkgs/applications/misc/gkrellm/default.nix index 81f74847c2f..934a7c69c99 100644 --- a/pkgs/applications/misc/gkrellm/default.nix +++ b/pkgs/applications/misc/gkrellm/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { homepage = http://members.dslextreme.com/users/billw/gkrellm/gkrellm.html; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/applications/misc/gpsbabel/default.nix b/pkgs/applications/misc/gpsbabel/default.nix index 5d4c2634952..6cd50406ed7 100644 --- a/pkgs/applications/misc/gpsbabel/default.nix +++ b/pkgs/applications/misc/gpsbabel/default.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; # arbitrary choice }; } diff --git a/pkgs/applications/misc/hello/ex-2/default.nix b/pkgs/applications/misc/hello/ex-2/default.nix index 161be5c6f1b..8a31c591b29 100644 --- a/pkgs/applications/misc/hello/ex-2/default.nix +++ b/pkgs/applications/misc/hello/ex-2/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { ''; homepage = http://www.gnu.org/software/hello/manual/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.eelco ]; + maintainers = [ stdenv.lib.maintainers.eelco ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix index 22e9143953e..805a47fc058 100644 --- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix +++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { homepage = http://www.bitlbee.org/; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ludo wkennington ]; + maintainers = with maintainers; [ wkennington ]; platforms = platforms.gnu; # arbitrary choice }; } diff --git a/pkgs/applications/networking/p2p/gnunet/default.nix b/pkgs/applications/networking/p2p/gnunet/default.nix index 052c5311253..54e042f17b9 100644 --- a/pkgs/applications/networking/p2p/gnunet/default.nix +++ b/pkgs/applications/networking/p2p/gnunet/default.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [ ludo viric ]; + maintainers = with stdenv.lib.maintainers; [ viric ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/networking/p2p/gnunet/svn.nix b/pkgs/applications/networking/p2p/gnunet/svn.nix index 25a51b3c936..be385c5bc8b 100644 --- a/pkgs/applications/networking/p2p/gnunet/svn.nix +++ b/pkgs/applications/networking/p2p/gnunet/svn.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [ ludo viric ]; + maintainers = with stdenv.lib.maintainers; [ viric ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/applications/office/impressive/default.nix b/pkgs/applications/office/impressive/default.nix index fad2167fb7a..24b144413df 100644 --- a/pkgs/applications/office/impressive/default.nix +++ b/pkgs/applications/office/impressive/default.nix @@ -73,7 +73,7 @@ in license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.mesaPlatforms; }; } diff --git a/pkgs/applications/science/misc/vite/default.nix b/pkgs/applications/science/misc/vite/default.nix index 8537ea171b3..510c56b66c8 100644 --- a/pkgs/applications/science/misc/vite/default.nix +++ b/pkgs/applications/science/misc/vite/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { homepage = http://vite.gforge.inria.fr/; license = stdenv.lib.licenses.cecill20; - maintainers = with stdenv.lib.maintainers; [ ludo fuuzetsu ]; + maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/applications/version-management/git-and-tools/topgit/default.nix b/pkgs/applications/version-management/git-and-tools/topgit/default.nix index 195f6f3a463..6ffcad27dc7 100644 --- a/pkgs/applications/version-management/git-and-tools/topgit/default.nix +++ b/pkgs/applications/version-management/git-and-tools/topgit/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { description = "TopGit manages large amount of interdependent topic branches"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ marcweber ludo simons ]; + maintainers = with stdenv.lib.maintainers; [ marcweber simons ]; }; } diff --git a/pkgs/applications/video/gnash/default.nix b/pkgs/applications/video/gnash/default.nix index 5a519e231c8..fc773211f69 100644 --- a/pkgs/applications/video/gnash/default.nix +++ b/pkgs/applications/video/gnash/default.nix @@ -115,7 +115,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; }; } // {mozillaPlugin = "/plugins";} diff --git a/pkgs/data/fonts/redhat-liberation-fonts/binary.nix b/pkgs/data/fonts/redhat-liberation-fonts/binary.nix index e3d2cfe0226..369ab3493f3 100644 --- a/pkgs/data/fonts/redhat-liberation-fonts/binary.nix +++ b/pkgs/data/fonts/redhat-liberation-fonts/binary.nix @@ -43,7 +43,6 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.raskin - stdenv.lib.maintainers.ludo ]; }; } diff --git a/pkgs/data/fonts/redhat-liberation-fonts/default.nix b/pkgs/data/fonts/redhat-liberation-fonts/default.nix index f6d98088ef9..a9304769378 100644 --- a/pkgs/data/fonts/redhat-liberation-fonts/default.nix +++ b/pkgs/data/fonts/redhat-liberation-fonts/default.nix @@ -45,7 +45,6 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.raskin - stdenv.lib.maintainers.ludo ]; }; } diff --git a/pkgs/development/compilers/bigloo/default.nix b/pkgs/development/compilers/bigloo/default.nix index 21677f7a75e..3599ff750c2 100644 --- a/pkgs/development/compilers/bigloo/default.nix +++ b/pkgs/development/compilers/bigloo/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { homepage = http://www-sop.inria.fr/indes/fp/Bigloo/; license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ ludo thoughtpolice ]; + maintainers = with stdenv.lib.maintainers; [ thoughtpolice ]; longDescription = '' Bigloo is a Scheme implementation devoted to one goal: enabling diff --git a/pkgs/development/compilers/gcc/4.4/default.nix b/pkgs/development/compilers/gcc/4.4/default.nix index 3cbd7706ea0..c78de2265f3 100644 --- a/pkgs/development/compilers/gcc/4.4/default.nix +++ b/pkgs/development/compilers/gcc/4.4/default.nix @@ -265,7 +265,6 @@ stdenv.mkDerivation ({ maintainers = [ # Add your name here! - stdenv.lib.maintainers.ludo stdenv.lib.maintainers.viric ]; diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix index 95986c03f74..b438758e358 100644 --- a/pkgs/development/compilers/gcc/4.5/default.nix +++ b/pkgs/development/compilers/gcc/4.5/default.nix @@ -378,7 +378,6 @@ stdenv.mkDerivation ({ ''; maintainers = [ - stdenv.lib.maintainers.ludo stdenv.lib.maintainers.viric ]; diff --git a/pkgs/development/compilers/gcc/4.6/default.nix b/pkgs/development/compilers/gcc/4.6/default.nix index 5ad087db134..ef3e2c535c2 100644 --- a/pkgs/development/compilers/gcc/4.6/default.nix +++ b/pkgs/development/compilers/gcc/4.6/default.nix @@ -449,7 +449,6 @@ stdenv.mkDerivation ({ ''; maintainers = [ - stdenv.lib.maintainers.ludo stdenv.lib.maintainers.viric ]; diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix index aca4d90b652..a0845b88681 100644 --- a/pkgs/development/compilers/gcc/4.8/default.nix +++ b/pkgs/development/compilers/gcc/4.8/default.nix @@ -508,7 +508,7 @@ stdenv.mkDerivation ({ compiler used in the GNU system including the GNU/Linux variant. ''; - maintainers = with stdenv.lib.maintainers; [ ludo viric shlevy simons ]; + maintainers = with stdenv.lib.maintainers; [ viric shlevy simons ]; # gnatboot is not available out of linux platforms, so we disable the darwin build # for the gnat (ada compiler). diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix index cffb50ef211..eca8120a208 100644 --- a/pkgs/development/compilers/gcc/4.9/default.nix +++ b/pkgs/development/compilers/gcc/4.9/default.nix @@ -494,7 +494,7 @@ stdenv.mkDerivation ({ compiler used in the GNU system including the GNU/Linux variant. ''; - maintainers = with stdenv.lib.maintainers; [ ludo viric shlevy simons ]; + maintainers = with stdenv.lib.maintainers; [ viric shlevy simons ]; # gnatboot is not available out of linux platforms, so we disable the darwin build # for the gnat (ada compiler). diff --git a/pkgs/development/compilers/mit-scheme/default.nix b/pkgs/development/compilers/mit-scheme/default.nix index b10aaedb483..076f3c95675 100644 --- a/pkgs/development/compilers/mit-scheme/default.nix +++ b/pkgs/development/compilers/mit-scheme/default.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation { license = licenses.gpl2Plus; - maintainers = with maintainers; [ ludo ]; + maintainers = [ ]; # Build fails on Cygwin and Darwin: # . diff --git a/pkgs/development/guile-modules/guile-cairo/default.nix b/pkgs/development/guile-modules/guile-cairo/default.nix index 7617e5fb1cd..4a1111d5f6e 100644 --- a/pkgs/development/guile-modules/guile-cairo/default.nix +++ b/pkgs/development/guile-modules/guile-cairo/default.nix @@ -31,6 +31,6 @@ stdenv.mkDerivation rec { homepage = http://home.gna.org/guile-cairo/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/guile-modules/guile-gnome/default.nix b/pkgs/development/guile-modules/guile-gnome/default.nix index 90012bb3ddd..e2392773de7 100644 --- a/pkgs/development/guile-modules/guile-gnome/default.nix +++ b/pkgs/development/guile-modules/guile-gnome/default.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/guile-modules/guile-lib/default.nix b/pkgs/development/guile-modules/guile-lib/default.nix index 25bdc64a8fe..258fe1e497e 100644 --- a/pkgs/development/guile-modules/guile-lib/default.nix +++ b/pkgs/development/guile-modules/guile-lib/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { homepage = http://www.nongnu.org/guile-lib/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; # arbitrary choice }; } diff --git a/pkgs/development/guile-modules/guile-ncurses/default.nix b/pkgs/development/guile-modules/guile-ncurses/default.nix index 175c656859e..f6b946dfd4c 100644 --- a/pkgs/development/guile-modules/guile-ncurses/default.nix +++ b/pkgs/development/guile-modules/guile-ncurses/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.lgpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; # arbitrary choice }; } diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix index 5ee0cd5291d..d71440a61d8 100644 --- a/pkgs/development/libraries/boehm-gc/default.nix +++ b/pkgs/development/libraries/boehm-gc/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { # non-copyleft, X11-style license license = http://hboehm.info/gc/license.txt; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/commoncpp2/default.nix b/pkgs/development/libraries/commoncpp2/default.nix index 9dff8a6c50f..a4347e77632 100644 --- a/pkgs/development/libraries/commoncpp2/default.nix +++ b/pkgs/development/libraries/commoncpp2/default.nix @@ -32,9 +32,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/commoncpp/; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.ludo - ]; + maintainers = [ stdenv.lib.maintainers.marcweber ]; platforms = with stdenv.lib.platforms; allBut freebsd; }; } diff --git a/pkgs/development/libraries/gdbm/default.nix b/pkgs/development/libraries/gdbm/default.nix index 1fd6c429dc0..63ba69fee08 100644 --- a/pkgs/development/libraries/gdbm/default.nix +++ b/pkgs/development/libraries/gdbm/default.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/gdbm/; license = stdenv.lib.licenses.gpl3Plus; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 091d780c722..81918b7c5e3 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (rec { homepage = http://www.gnu.org/software/gettext/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 55f8d8a1725..81abd4f19d4 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -190,7 +190,7 @@ stdenv.mkDerivation ({ license = stdenv.lib.licenses.lgpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; #platforms = stdenv.lib.platforms.linux; } // meta; } diff --git a/pkgs/development/libraries/gmp/4.3.2.nix b/pkgs/development/libraries/gmp/4.3.2.nix index aabb79d27a9..39d84c4f6fe 100644 --- a/pkgs/development/libraries/gmp/4.3.2.nix +++ b/pkgs/development/libraries/gmp/4.3.2.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { homepage = http://gmplib.org/; license = stdenv.lib.licenses.lgpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gmp/5.0.5.nix b/pkgs/development/libraries/gmp/5.0.5.nix index 5f3690f67a9..6a78353a078 100644 --- a/pkgs/development/libraries/gmp/5.0.5.nix +++ b/pkgs/development/libraries/gmp/5.0.5.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { homepage = http://gmplib.org/; license = stdenv.lib.licenses.lgpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.simons ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/hwloc/default.nix b/pkgs/development/libraries/hwloc/default.nix index d4d9663441f..f5a3857ec28 100644 --- a/pkgs/development/libraries/hwloc/default.nix +++ b/pkgs/development/libraries/hwloc/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { homepage = http://www.open-mpi.org/projects/hwloc/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libchop/default.nix b/pkgs/development/libraries/libchop/default.nix index 37af9756724..e57d1f29606 100644 --- a/pkgs/development/libraries/libchop/default.nix +++ b/pkgs/development/libraries/libchop/default.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { homepage = http://nongnu.org/libchop/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [ ludo viric ]; + maintainers = with stdenv.lib.maintainers; [ viric ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index ded6dbf25c8..cdcba4756aa 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { # See http://github.com/atgreen/libffi/blob/master/LICENSE . license = stdenv.lib.licenses.free; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libsigsegv/default.nix b/pkgs/development/libraries/libsigsegv/default.nix index b6be8d194c1..4e85e6d597a 100644 --- a/pkgs/development/libraries/libsigsegv/default.nix +++ b/pkgs/development/libraries/libsigsegv/default.nix @@ -26,6 +26,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/libunistring/default.nix b/pkgs/development/libraries/libunistring/default.nix index 9470240fc14..667d620c501 100644 --- a/pkgs/development/libraries/libunistring/default.nix +++ b/pkgs/development/libraries/libunistring/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (rec { license = stdenv.lib.licenses.lgpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libxmi/default.nix b/pkgs/development/libraries/libxmi/default.nix index 42c427605c4..71c641770e4 100644 --- a/pkgs/development/libraries/libxmi/default.nix +++ b/pkgs/development/libraries/libxmi/default.nix @@ -16,6 +16,6 @@ stdenv.mkDerivation { homepage = http://www.gnu.org/software/libxmi/; license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.gnu; # arbitrary choice - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/mpc/default.nix b/pkgs/development/libraries/mpc/default.nix index dd132cfb5b7..867a18fac54 100644 --- a/pkgs/development/libraries/mpc/default.nix +++ b/pkgs/development/libraries/mpc/default.nix @@ -27,6 +27,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix index b8cabd01281..d24431e59fe 100644 --- a/pkgs/development/libraries/mpfr/default.nix +++ b/pkgs/development/libraries/mpfr/default.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.lgpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index 3aa27480a0f..a4b8c8d4567 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { license = lib.licenses.mit; - maintainers = [ lib.maintainers.ludo ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/nettle/default.nix b/pkgs/development/libraries/nettle/default.nix index 38d197c69ab..8f731233aa9 100644 --- a/pkgs/development/libraries/nettle/default.nix +++ b/pkgs/development/libraries/nettle/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (rec { homepage = http://www.lysator.liu.se/~nisse/nettle/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/libraries/readline/6.2.nix b/pkgs/development/libraries/readline/6.2.nix index dfdb86901c2..fd8a0764f49 100644 --- a/pkgs/development/libraries/readline/6.2.nix +++ b/pkgs/development/libraries/readline/6.2.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (rec { license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; branch = "6.2"; }; } diff --git a/pkgs/development/libraries/readline/6.3.nix b/pkgs/development/libraries/readline/6.3.nix index 98ebcdabebe..93e24ed0c03 100644 --- a/pkgs/development/libraries/readline/6.3.nix +++ b/pkgs/development/libraries/readline/6.3.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; - maintainers = [ maintainers.ludo ]; + maintainers = [ ]; platforms = platforms.unix; branch = "6.3"; diff --git a/pkgs/development/libraries/slib/default.nix b/pkgs/development/libraries/slib/default.nix index daf716296a1..36b6aff8105 100644 --- a/pkgs/development/libraries/slib/default.nix +++ b/pkgs/development/libraries/slib/default.nix @@ -56,6 +56,6 @@ stdenv.mkDerivation rec { homepage = http://people.csail.mit.edu/jaffer/SLIB; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/build-managers/gnumake/3.81/default.nix b/pkgs/development/tools/build-managers/gnumake/3.81/default.nix index 2a8c80e7db2..7281f4509db 100644 --- a/pkgs/development/tools/build-managers/gnumake/3.81/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/3.81/default.nix @@ -42,6 +42,6 @@ stdenv.mkDerivation { homepage = http://www.gnu.org/software/make/; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/build-managers/gnumake/3.82/default.nix b/pkgs/development/tools/build-managers/gnumake/3.82/default.nix index 6b24df39be9..fa7bb9e122a 100644 --- a/pkgs/development/tools/build-managers/gnumake/3.82/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/3.82/default.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation { homepage = http://www.gnu.org/software/make/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/build-managers/gnumake/4.0/default.nix b/pkgs/development/tools/build-managers/gnumake/4.0/default.nix index 2da17490abf..a4128ac854c 100644 --- a/pkgs/development/tools/build-managers/gnumake/4.0/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/4.0/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation { homepage = http://www.gnu.org/software/make/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/build-managers/gnumake/4.1/default.nix b/pkgs/development/tools/build-managers/gnumake/4.1/default.nix index edcee1f465f..600f6f5759d 100644 --- a/pkgs/development/tools/build-managers/gnumake/4.1/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/4.1/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { to build and install the program. ''; - maintainers = with stdenv.lib.maintainers; [ ludo simons ]; + maintainers = with stdenv.lib.maintainers; [ simons ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/guile/g-wrap/default.nix b/pkgs/development/tools/guile/g-wrap/default.nix index 74e967686f3..e62ce13ebf7 100644 --- a/pkgs/development/tools/guile/g-wrap/default.nix +++ b/pkgs/development/tools/guile/g-wrap/default.nix @@ -26,6 +26,6 @@ stdenv.mkDerivation rec { ''; homepage = http://www.nongnu.org/g-wrap/; license = stdenv.lib.licenses.lgpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/autoconf/default.nix b/pkgs/development/tools/misc/autoconf/default.nix index 4dca332722b..ef8e1628185 100644 --- a/pkgs/development/tools/misc/autoconf/default.nix +++ b/pkgs/development/tools/misc/autoconf/default.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/autogen/default.nix b/pkgs/development/tools/misc/autogen/default.nix index a26c1fdd199..48533f553fe 100644 --- a/pkgs/development/tools/misc/autogen/default.nix +++ b/pkgs/development/tools/misc/autogen/default.nix @@ -50,6 +50,6 @@ let version = "5.18"; in homepage = http://www.gnu.org/software/autogen/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.11.x.nix b/pkgs/development/tools/misc/automake/automake-1.11.x.nix index 879c7e0e870..7a4e2d7f44f 100644 --- a/pkgs/development/tools/misc/automake/automake-1.11.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.11.x.nix @@ -43,6 +43,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.12.x.nix b/pkgs/development/tools/misc/automake/automake-1.12.x.nix index a875298486f..70f3dbcbadc 100644 --- a/pkgs/development/tools/misc/automake/automake-1.12.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.12.x.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.13.x.nix b/pkgs/development/tools/misc/automake/automake-1.13.x.nix index a512cffa007..7190985ed02 100644 --- a/pkgs/development/tools/misc/automake/automake-1.13.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.13.x.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { Standards. Automake requires the use of Autoconf. ''; - maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/tools/misc/automake/automake-1.14.x.nix b/pkgs/development/tools/misc/automake/automake-1.14.x.nix index f95b7de2e17..65c92954a27 100644 --- a/pkgs/development/tools/misc/automake/automake-1.14.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.14.x.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { Standards. Automake requires the use of Autoconf. ''; - maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ]; + maintainers = [ stdenv.lib.maintainers.simons ]; }; } diff --git a/pkgs/development/tools/misc/cflow/default.nix b/pkgs/development/tools/misc/cflow/default.nix index fb15be14261..2425e346121 100644 --- a/pkgs/development/tools/misc/cflow/default.nix +++ b/pkgs/development/tools/misc/cflow/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/cflow/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; /* On Darwin, build fails with: diff --git a/pkgs/development/tools/misc/complexity/default.nix b/pkgs/development/tools/misc/complexity/default.nix index a7ae4d17ab1..4508fd64119 100644 --- a/pkgs/development/tools/misc/complexity/default.nix +++ b/pkgs/development/tools/misc/complexity/default.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/complexity/; platforms = stdenv.lib.platforms.gnu; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/cppi/default.nix b/pkgs/development/tools/misc/cppi/default.nix index 2942408de80..148c08d9c86 100644 --- a/pkgs/development/tools/misc/cppi/default.nix +++ b/pkgs/development/tools/misc/cppi/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/development/tools/misc/dejagnu/default.nix b/pkgs/development/tools/misc/dejagnu/default.nix index d3c2e7e6389..189df4b298a 100644 --- a/pkgs/development/tools/misc/dejagnu/default.nix +++ b/pkgs/development/tools/misc/dejagnu/default.nix @@ -50,6 +50,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix index b366feb304a..7d46b005919 100644 --- a/pkgs/development/tools/misc/global/default.nix +++ b/pkgs/development/tools/misc/global/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/global/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.unix; }; } diff --git a/pkgs/development/tools/misc/help2man/default.nix b/pkgs/development/tools/misc/help2man/default.nix index e93d844db23..9a16ec98795 100644 --- a/pkgs/development/tools/misc/help2man/default.nix +++ b/pkgs/development/tools/misc/help2man/default.nix @@ -30,6 +30,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.gnu; # arbitrary choice - maintainers = with maintainers; [ ludo pSub ]; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/development/tools/misc/libtool/libtool2.nix b/pkgs/development/tools/misc/libtool/libtool2.nix index 8b0a92c1244..d0cc086a9a6 100644 --- a/pkgs/development/tools/misc/libtool/libtool2.nix +++ b/pkgs/development/tools/misc/libtool/libtool2.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (rec { license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/os-specific/linux/nfs-utils/default.nix b/pkgs/os-specific/linux/nfs-utils/default.nix index 9c4905bd529..6b30104b083 100644 --- a/pkgs/os-specific/linux/nfs-utils/default.nix +++ b/pkgs/os-specific/linux/nfs-utils/default.nix @@ -58,6 +58,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/servers/unfs3/default.nix b/pkgs/servers/unfs3/default.nix index ee566c32def..4304dc229e3 100644 --- a/pkgs/servers/unfs3/default.nix +++ b/pkgs/servers/unfs3/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/filesystems/nixpart/0.4/parted.nix b/pkgs/tools/filesystems/nixpart/0.4/parted.nix index 01b9f391a44..04859020e36 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/parted.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/parted.nix @@ -48,7 +48,6 @@ stdenv.mkDerivation rec { maintainers = [ # Add your name here! - stdenv.lib.maintainers.ludo ]; # GNU Parted requires libuuid, which is part of util-linux-ng. diff --git a/pkgs/tools/graphics/plotutils/default.nix b/pkgs/tools/graphics/plotutils/default.nix index 0f67de3c3ea..6a7a6745c87 100644 --- a/pkgs/tools/graphics/plotutils/default.nix +++ b/pkgs/tools/graphics/plotutils/default.nix @@ -45,7 +45,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; maintainers = [ stdenv.lib.maintainers.marcweber - stdenv.lib.maintainers.ludo ]; platforms = stdenv.lib.platforms.gnu; }; diff --git a/pkgs/tools/misc/parted/default.nix b/pkgs/tools/misc/parted/default.nix index 0763532260a..ba179d7af91 100644 --- a/pkgs/tools/misc/parted/default.nix +++ b/pkgs/tools/misc/parted/default.nix @@ -54,7 +54,6 @@ stdenv.mkDerivation rec { maintainers = [ # Add your name here! - stdenv.lib.maintainers.ludo ]; # GNU Parted requires libuuid, which is part of util-linux-ng. diff --git a/pkgs/tools/networking/inetutils/default.nix b/pkgs/tools/networking/inetutils/default.nix index a6a921f6f58..a4bde029ca0 100644 --- a/pkgs/tools/networking/inetutils/default.nix +++ b/pkgs/tools/networking/inetutils/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/inetutils/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.gnu; }; } diff --git a/pkgs/tools/networking/lsh/default.nix b/pkgs/tools/networking/lsh/default.nix index c86dba91f5e..77d268f3a47 100644 --- a/pkgs/tools/networking/lsh/default.nix +++ b/pkgs/tools/networking/lsh/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { homepage = http://www.lysator.liu.se/~nisse/lsh/; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/tools/networking/mailutils/default.nix b/pkgs/tools/networking/mailutils/default.nix index 0ee49032704..5326c9059de 100755 --- a/pkgs/tools/networking/mailutils/default.nix +++ b/pkgs/tools/networking/mailutils/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { license = [ "LGPLv3+" /* libraries */ "GPLv3+" /* tools */ ]; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; homepage = http://www.gnu.org/software/mailutils/; diff --git a/pkgs/tools/networking/p2p/seeks/default.nix b/pkgs/tools/networking/p2p/seeks/default.nix index 91dcf1bbd00..28dce0f567e 100644 --- a/pkgs/tools/networking/p2p/seeks/default.nix +++ b/pkgs/tools/networking/p2p/seeks/default.nix @@ -61,7 +61,6 @@ stdenv.mkDerivation { homepage = http://www.seeks-project.info/; maintainers = [ - stdenv.lib.maintainers.ludo stdenv.lib.maintainers.matejc ]; platforms = stdenv.lib.platforms.gnu; # arbitrary choice diff --git a/pkgs/tools/package-management/guix/default.nix b/pkgs/tools/package-management/guix/default.nix index b4b3c98505e..1d5d995a189 100644 --- a/pkgs/tools/package-management/guix/default.nix +++ b/pkgs/tools/package-management/guix/default.nix @@ -61,7 +61,7 @@ in stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.linux; homepage = http://www.gnu.org/software/guix; diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix index a6c8ecc2015..54a76280a1c 100644 --- a/pkgs/tools/security/tor/default.nix +++ b/pkgs/tools/security/tor/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { license="mBSD"; maintainers = with stdenv.lib.maintainers; - [ phreedom ludo doublec thoughtpolice ]; + [ phreedom doublec thoughtpolice ]; platforms = stdenv.lib.platforms.gnu; # arbitrary choice }; } diff --git a/pkgs/tools/text/enscript/default.nix b/pkgs/tools/text/enscript/default.nix index 797f5b8b692..37121e68f66 100644 --- a/pkgs/tools/text/enscript/default.nix +++ b/pkgs/tools/text/enscript/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/enscript/; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; platforms = stdenv.lib.platforms.all; }; } diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix index 8866888a736..ba110640b31 100644 --- a/pkgs/tools/text/gawk/default.nix +++ b/pkgs/tools/text/gawk/default.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/typesetting/lout/default.nix b/pkgs/tools/typesetting/lout/default.nix index a2ebfa0a9fd..09aed52265b 100644 --- a/pkgs/tools/typesetting/lout/default.nix +++ b/pkgs/tools/typesetting/lout/default.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3Plus; platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.ludo ]; + maintainers = [ ]; }; } -- cgit 1.4.1 From 98556ef15023fa1a22ce14e066030713b411af67 Mon Sep 17 00:00:00 2001 From: muflax Date: Tue, 23 Dec 2014 23:20:14 +0000 Subject: git-remote-hg: fix compatibility with mercurial 3.2 Close #5458. --- .../version-management/git-and-tools/git-remote-hg/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/applications/version-management') diff --git a/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix b/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix index ffeb299f49b..a60d7d2a49b 100644 --- a/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix @@ -3,14 +3,14 @@ }: stdenv.mkDerivation rec { - rev = "185852eac44c25ae2e8d3b3fb6c9630e754e6363"; - version = "v0.2-185852eac44c25ae2e8d3b3fb6c9630e754e6363"; + rev = "e716a9e1a9e460a45663694ba4e9e8894a8452b2"; + version = "v0.2-e716a9e1a9e460a45663694ba4e9e8894a8452b2"; name = "git-remote-hg-${version}"; src = fetchgit { inherit rev; - url = "git://github.com/felipec/git-remote-hg.git"; - sha256 = "1hc65nvxq7if1imwffyxia0i6vnkbax09gfcl9vq9yffzi8xzzfy"; + url = "git://github.com/fingolfin/git-remote-hg.git"; + sha256 = "7c61c8f2be47d96c4244f0f8a3c8f9b994994b15dbe1754581f746888d705463"; }; buildInputs = [ mercurial.python mercurial makeWrapper -- cgit 1.4.1