Commit graph

8259 commits

Author SHA1 Message Date
Vladimír Čunát 83cb0354e9 clang_34: make it evaluate to 3.4 even on Darwin 2014-04-12 09:46:37 +02:00
Austin Seipp 172dc1336f nixos: add grsecurity module (#1875)
This module implements a significant refactoring in grsecurity
configuration for NixOS, making it far more usable by default and much
easier to configure.

 - New security.grsecurity NixOS attributes.
   - All grsec kernels supported
   - Allows default 'auto' grsec configuration, or custom config
   - Supports custom kernel options through kernelExtraConfig
   - Defaults to high-security - user must choose kernel, server/desktop
     mode, and any virtualisation software. That's all.
   - kptr_restrict is fixed under grsecurity (it's unwriteable)
 - grsecurity patch creation is now significantly abstracted
   - only need revision, version, and SHA1
   - kernel version requirements are asserted for sanity
   - built kernels can have the uname specify the exact grsec version
     for development or bug reports. Off by default (requires
     `security.grsecurity.config.verboseVersion = true;`)
 - grsecurity sysctl support
   - By default, disabled.
   - For people who enable it, NixOS deploys a 'grsec-lock' systemd
     service which runs at startup. You are expected to configure sysctl
     through NixOS like you regularly would, which will occur before the
     service is started. As a result, changing sysctl settings requires
     a reboot.
 - New default group: 'grsecurity'
   - Root is a member by default
   - GRKERNSEC_PROC_GID is implicitly set to the 'grsecurity' GID,
     making it possible to easily add users to this group for /proc
     access
 - AppArmor is now automatically enabled where it wasn't before, despite
   implying features.apparmor = true

The most trivial example of enabling grsecurity in your kernel is by
specifying:

    security.grsecurity.enable          = true;
    security.grsecurity.testing         = true;      # testing 3.13 kernel
    security.grsecurity.config.system   = "desktop"; # or "server"

This specifies absolutely no virtualisation support. In general, you
probably at least want KVM host support, which is a little more work.
So:

    security.grsecurity.enable = true;
    security.grsecurity.stable = true; # enable stable 3.2 kernel
    security.grsecurity.config = {
      system   = "server";
      priority = "security";
      virtualisationConfig   = "host";
      virtualisationSoftware = "kvm";
      hardwareVirtualisation = true;
    }

This module has primarily been tested on Hetzner EX40 & VQ7 servers
using NixOps.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-11 22:43:51 -05:00
Peter Simons 4604d52df4 GHC version 7.8.1 has been deprecated because of a serious bug.
We'll have version 7.8.2 out soon.

http://www.haskell.org/pipermail/ghc-devs/2014-April/004605.html
http://www.haskell.org/pipermail/ghc-devs/2014-April/004616.html
2014-04-11 22:33:11 +02:00
Domen Kožar baf2a4d4b9 ugly tarball fix for llvmPackages support on Darwin 2014-04-11 21:28:43 +02:00
Ricardo M. Correia b8a6eef6fa gradm: Attempt to fix build failure by using older flex
Thanks to @thoughtpolice for noticing and suggesting the fix!
2014-04-11 16:38:24 +02:00
Eelco Dolstra 2da09363bf nix: Update to 1.7 2014-04-11 12:24:48 +02:00
Peter Simons 846906fc53 ipsec-tools: fix build by passing old version of flex 2014-04-11 11:09:59 +02:00
Peter Simons e35c2f6d4c all-packages.nix: drop trailing whitespace 2014-04-11 10:06:19 +02:00
Peter Simons 6913650adc maude: use old flex version; the new one causes build errors
This issue has been fixed in the latest alpha release.
2014-04-11 10:06:18 +02:00
Peter Simons f741be954c Offer consistently named attributes for the two available flex versions. 2014-04-11 10:06:18 +02:00
Vladimír Čunát 8c12816d59 pango on darwin: amend the wrong fix
I didn't realize pango doesn't depend on flex directly,
only through introspection which caused build problems by itself, too.
2014-04-11 09:57:26 +02:00
Vladimír Čunát e2e74154e2 fix tarball (dragonegg missing in llvmPackages on darwin) 2014-04-11 09:57:25 +02:00
Michael Raskin 31f3755327 Adding TCPFlow: a tool to separate tcp streams when capturing 2014-04-11 11:08:51 +04:00
Vladimír Čunát 07dc578572 llvm(Packages) on darwin: attempts to fix
- mark llvm34 as broken on darwin (so it doesn't install by default with nix-env)
- don't use our gcc for llvm_34 (might fix the build)
- switch also clang default to 3.3 on darwin (llvm was before)
2014-04-10 21:19:40 +02:00
Vladimír Čunát 297bcd2088 pango on darwin: attempt to fix build
Supply older flex (new doesn't build), and disable introspection.
2014-04-10 20:37:52 +02:00
Carles Pagès 8aa84644f9 libtxc_dxtn_s2tc: add v1.0 (close #2194)
S2TC is a patent-free S3TC compatible implementation and provides texture
compression to mesa.
2014-04-10 20:19:49 +02:00
Rob Vermaas c3c045c59d Add logstash-forwarder. 2014-04-10 13:31:23 +02:00
Ricardo M. Correia 5dfc6584a5 grsecurity: Update stable patch from 3.0-3.2.56-201404062126 -> 3.0-3.2.57-201404091758 2014-04-10 00:37:33 +02:00
Aristid Breitkreuz 5d12cbf1c2 add back old version of flex for grub2 2014-04-09 20:42:08 +02:00
Domen Kožar e5e27cfd64 Merge pull request #2153 from lethalman/gnome3
accounts-daemon service, fix gnome-shell, add libgnomekbd, musicbrainz5, sushi, gnome-contacts
2014-04-09 15:01:17 +02:00
Austin Seipp 692ee73af1 libseccomp: version 2.1.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 19:37:47 -05:00
Austin Seipp 3ff158289a lockdep: refactor into non-kernel package
Lockdep doesn't *really* require the kernel package - just the kernel
sources. It's really a user-space tool just compiled from some portable
code within the kernel, nothing more.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 19:21:55 -05:00
Vladimír Čunát f5865a5155 linux: switch to 3.12 by default (latest longterm)
Close #2151.
2014-04-08 20:30:41 +02:00
Austin Seipp 968740e0c1 capstone: version 2.1.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-08 07:04:19 -05:00
Luca Bruno 9b737eb282 libmusicbrainz5: new major version 2014-04-08 13:39:51 +02:00
Rob Vermaas a4ebaa61e4 Update dd-agent to 4.2.0 2014-04-08 09:27:09 +02:00
Austin Seipp 4dc15c087a musl: version 1.0.0
NB: This currently doesn't add a working musl-wrapper around musl-gcc to
allow it to work properly (musl has its own dynamic linker as well as
libc too which must be accounted for). But at the moment it builds fine,
and I plan on working more on it in the future. So lets get it
integrated and building on Hydra.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-07 10:31:31 -05:00
Austin Seipp 5aa4495cb5 boolector: add version 1.5 and 1.6
There are two versions here because beginning with 1.6.0, Boolector has
a more restrictive, unfree license which disallows commercial use.

As a result, Boolector 1.5 is the default 'boolector' expression.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-07 09:17:05 -05:00
Ricardo M. Correia 807fad571a grsecurity: Update stable and test patches
stable: 3.0-3.2.56-201404012135 -> 3.0-3.2.56-201404062126
test:   3.0-3.13.8-201404011912 -> 3.0-3.13.9-201404062127
2014-04-07 15:31:12 +02:00
Shea Levy 9949d0255e Merge branch 'make-the-kernel-build-repeatable' of git://github.com/alexanderkjeldaas/nixpkgs
Make the kernel build and initrd generation binary repeatable (#2128)
2014-04-06 17:02:16 -04:00
Austin Seipp 8d3d50191d spiped: version 1.3.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-06 11:07:35 -05:00
Shea Levy 79c9d556e0 Add sproxy-web 2014-04-06 11:10:01 -04:00
Shea Levy 331d234ef6 Add sproxy 2014-04-06 10:54:44 -04:00
Shea Levy 0bab5319cc Merge branch 'pastebinit' of git://github.com/lethalman/nixpkgs
pastebinit: new package
2014-04-06 07:16:46 -04:00
Luca Bruno 1653c118bd pastebinit: new package
A software that lets you send anything you want directly to a pastebin from the command line

https://launchpad.net/pastebinit
2014-04-06 11:10:24 +02:00
Shea Levy d35619429a Merge branch 'cache.su' of git://github.com/wkennington/nixpkgs
su: Make the su package a provider of only the su binary

Fixes #1877
2014-04-05 18:49:30 -04:00
Shea Levy add2fafffb Merge branch 'master.nmap' of git://github.com/wkennington/nixpkgs
nmap: Build the non-graphical version by default
2014-04-05 18:40:18 -04:00
William A. Kennington III 28ab3acb58 su: Make the su package a provider of only the su binary
Additionally, provide su with the base system and remove su from the
util-linux package as it is now provided by shadow.
2014-04-05 16:01:52 -05:00
William A. Kennington III 47f0f34fca nmap: Build the non-graphical version by default 2014-04-05 14:58:49 -05:00
Shea Levy bd1a95ee60 Remove superfluous newline 2014-04-05 15:01:05 -04:00
Shea Levy 0fda39ee3e Merge branch 'mtpfs' of git://github.com/qknight/nixpkgs
added mtpfs to mount MTP devices via usb using FUSE
2014-04-05 15:00:38 -04:00
Sander van der Burg dc614aff92 libresample: Add package 2014-04-05 20:54:47 +02:00
Shea Levy ea9c8d6a13 Merge branch 'rippled' of git://github.com/ehmry/nixpkgs
rippled: initial pkg and module expressions

Had to change the rippled uid.

Conflicts:
	nixos/modules/misc/ids.nix
2014-04-05 14:23:29 -04:00
Shea Levy decd2feb0a Merge branch 'pd' of git://github.com/iyzsong/nixpkgs into test-1515
tcl/tk: update to 8.5.15, fix #1479
2014-04-05 14:01:07 -04:00
Jaka Hudoklin 413ebfb246 virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1

[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
  (instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
  virt-manager. Without it:
  GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
  feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-04-05 18:37:05 +02:00
Alexander Kjeldaas f67015cae4 Make initrd and the kernel builds repeatable. 2014-04-05 08:41:06 +02:00
Vladimír Čunát 10147beecf Merge branch vcunat@NixOS:p/stdenv (close #1840)
This branch contains a collection of stdenv-changing updates.
There's glibc 2.18 -> .19 bump and many non-intrusive PRs.

The grsecurity branch #1187 got removed at Eelco's request,
see https://github.com/NixOS/nixpkgs/issues/1840#issuecomment-39327023
2014-04-04 21:33:55 +02:00
Luca Bruno 13f40aea33 libpwquality: factor out from gnome-control-center 2014-04-04 16:14:59 +02:00
Matej Cotman 7df1ce5088 syncthing: new package and nixos module 2014-04-04 10:46:29 +02:00
Vladimír Čunát 8146737127 Merge #2090: add new lockdep tool from Linux 3.14 2014-04-02 20:55:30 +02:00
Vladimír Čunát 457fdb3842 texinfo: move ncurses support into texinfoInteractive
This, for example, drops the stdenv dependency on ncurses.
2014-04-02 19:05:56 +02:00
Vladimír Čunát 11d4c257c1 Merge branch glibc-2.19, see #1840 2014-04-02 19:03:49 +02:00
Domen Kožar 80a03f665d Merge branch 'x-updates' 2014-04-02 15:30:52 +02:00
Ricardo M. Correia 52d233af22 grsecurity: Update stable patch from 3.0-3.2.55-201403300851 -> 3.0-3.2.56-201404012135 2014-04-02 15:11:33 +02:00
Ricardo M. Correia 407a6857c6 grsecurity: Update stable and test patches
stable: 3.0-3.2.55-201403252026 -> 3.0-3.2.55-201403300851
test:   3.0-3.13.7-201403252047 -> 3.0-3.13.8-201404011912
2014-04-02 02:16:59 +02:00
Vladimír Čunát 6445ac90ad Merge master into x-updates 2014-04-01 10:49:31 +02:00
Austin Seipp 4202a9315a grsecurity: add myself to maintainer list
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 02:59:53 -05:00
Austin Seipp bdff718c5b kernel: add lockdep expression
Lockdep is the kernel's locking validation/debugging tool and has seen
heavy pro-active usage and development. In Linux 3.14, it's now
available directly to userspace for the same purpose. It comes with a
convenient utility to LD_PRELOAD a shared library for validation, or a
user-space API to link to directly.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 01:20:46 -05:00
Austin Seipp 9493159017 kernel: remove 3.11 series (EOL)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 00:56:23 -05:00
Shea Levy 304fd16d95 Merge branch 'concurrencykit' of git://github.com/thoughtpolice/nixpkgs
concurrencykit: version 0.4.1
2014-03-31 21:50:42 -04:00
Austin Seipp 92192847fc concurrencykit: version 0.4.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-31 20:49:50 -05:00
Shea Levy 2d4ce25b5b Add linux 3.14 2014-03-31 20:54:47 -04:00
Jaka Hudoklin c3524a8dd6 optipng: use system libpng & zlib, fix cross builds and add support for static builds 2014-04-01 01:43:56 +02:00
Peter Simons a20d5da92e Merge pull request #2084 from thoughtpolice/security
Add tools: p0f & hashcat
2014-03-31 23:06:10 +02:00
Domen Kožar c6ebbd29e5 add v4l2loopback: a kernel module to create V4L2 loopback devices 2014-03-31 20:02:53 +02:00
Austin Seipp 3ef0a880cb p0f: version 3.06b
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-31 11:22:50 -05:00
Austin Seipp cff179f829 hashcat: version 0.47
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-31 10:56:02 -05:00
Joachim Schiele b894dfffb3 added mtpfs to mount MTP devices via usb using FUSE 2014-03-30 13:00:25 +02:00
Rickard Nilsson 61ecf919e1 New package: wal-e
A Postgres WAL-shipping disaster recovery and replication toolkit
2014-03-30 04:34:38 +02:00
Shea Levy fd5d6044c0 Merge branch 'printrun' of git://github.com/ambrop72/nixpkgs
Add Printrun.
2014-03-29 22:19:29 -04:00
宋文武 6e7fe59bb1 uzbl: build with webkitgtk2, cleanup 2014-03-30 09:52:36 +08:00
宋文武 d14b9e9850 get rid of old webkit and webkit_gtk2 packages 2014-03-30 09:02:07 +08:00
Austin Seipp 925cce304f cb0cat is now cb1cat
Submissions for CAESAR are now over, so CBEAMr0 has become CBEAMr1 with
some minor alterations.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-29 18:48:16 -05:00
ambrop7@gmail.com 9a2758f98d Add Printrun. 2014-03-29 23:17:56 +01:00
ambrop7@gmail.com 090ee41e6b gvfs: Fix build with lightWeight=false (close #2068)
Needed for SMB backend.
2014-03-29 21:51:16 +01:00
Emery Hemingway 6c77690b28 rippled: initial pkg and module expressions
rippled is the Ripple P2P payment network reference server
https://ripple.com
2014-03-29 15:31:37 -04:00
宋文武 5668a70a49 widelands: update to build-18 (close #2062)
@vcunat enabled parallelBuilding.
2014-03-29 18:38:46 +01:00
Shea Levy ee65278d54 Merge branch 'add_n-djbdns' of git://github.com/msackman/nixpkgs
Add New-DJBDNS
2014-03-29 13:06:08 -04:00
ambrop7@gmail.com 8b94e22f33 Add gcc-arm-embedded.
These are packages for precompiled ARM microcontroller compilers from
https://launchpad.net/gcc-arm-embedded.

[Bjørn: modify commit message (add paragraph).]
2014-03-29 17:57:45 +01:00
Shea Levy ac68dc6dc6 Merge branch 'minecraft-server' of git://github.com/thoughtpolice/nixpkgs
nixpkgs: add Minecraft Server & a service module
2014-03-29 12:51:49 -04:00
Matthew Sackman be6a16ccbc Add New-DJBDNS 2014-03-29 16:47:23 +00:00
Maxim Ivanov f949a71aac add libmsgpack C/C++ library (close #2059) 2014-03-29 14:38:53 +01:00
Austin Seipp d60af7f34d minecraft-server: version 1.7.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-29 05:31:24 -05:00
Michael Raskin 1eb42d9d79 Merge pull request #2048 from echaozh/master
add julia 0.2.1 release
2014-03-28 23:03:04 -07:00
Shea Levy 1d0eb1ae47 Merge branch 'pitivi' of git://github.com/iyzsong/nixpkgs
add pitivi, gstreamer powered non-linear video editor
2014-03-29 00:43:36 -04:00
Shea Levy 4428ed66a2 Merge branch 'webkit' of git://github.com/iyzsong/nixpkgs
webkit: update to 2.4.0, add gtk2 version
2014-03-29 00:41:34 -04:00
Shea Levy a0a135d5ef Merge branch 'z3' of git://github.com/thoughtpolice/nixpkgs
z3: version 4.3.1
2014-03-28 23:54:43 -04:00
Shea Levy 701cb6b099 Merge branch 'nixos/containers/fix1' of git://github.com/offlinehacker/nixpkgs
nixos: fix linux containers (systemd-nspawn, lxc, lxc-libvirt)
2014-03-28 23:39:01 -04:00
Shea Levy f3e9e3dea5 Merge branch 'u/icedtea' of git://github.com/wizeman/nixpkgs
icedtea7, icedtea7_web: New packages
2014-03-28 23:25:25 -04:00
Shea Levy e0341475dc Merge branch 'master' of git://github.com/fmap/nixpkgs
Add Mnemosyne 2.2.1
2014-03-28 23:09:25 -04:00
Shea Levy 8a15cfdaec Merge branch 'mps' of git://github.com/thoughtpolice/nixpkgs
Add mps 1.113.0, fix usage of Sleepycat license
2014-03-28 23:03:20 -04:00
Zhang Yichao 10511b4712 add julia 0.2.1 release 2014-03-28 18:39:26 +08:00
Thomas Tuegel 5554d9c688 Add zotero 4.0.19 (close #2043)
@vcunat simplied the expression a little.
2014-03-27 22:42:47 +01:00
Vladimír Čunát 576e9289dd Merge master into x-updates 2014-03-27 21:34:06 +01:00
宋文武 2cf7678fc0 webkitgtk: add gtk2 version 2014-03-27 17:16:15 +08:00
宋文武 96d78a2804 pitivi: fix icons 2014-03-27 11:01:24 +08:00
Shea Levy e16595f149 Build all ghcs on hydra 2014-03-26 22:46:05 -04:00
Ricardo M. Correia 897bbc3702 grsecurity: Add myself as a maintainer 2014-03-26 23:07:57 +00:00
Ricardo M. Correia 911f332279 grsecurity: Update stable and test patches
stable: 3.0-3.2.55-201403202347 -> 3.0-3.2.55-201403252026
test:   3.0-3.13.6-201403202349 -> 3.0-3.13.7-201403252047
2014-03-26 23:07:57 +00:00
Cillian de Róiste de3b5b4500 Add simplescreenrecorder: an excellent screen recorder for linux 2014-03-26 23:02:33 +01:00
Ricardo M. Correia 5fbc63be35 icedtea7_web: New package
Java web browser plugin and an implementation of Java Web Start.
2014-03-26 21:07:36 +01:00
Ricardo M. Correia 2d821edb92 npapi-sdk: New package
NPAPI-SDK is a bundle of NPAPI headers by Mozilla.
2014-03-26 21:07:36 +01:00
Ricardo M. Correia 72d457de2f icedtea7: New package
Free Java environment based on OpenJDK 7.0 and the IcedTea project.
2014-03-26 21:07:36 +01:00
_1126 34301c89e1 ncmcp: New expression 2014-03-26 12:15:01 +01:00
Peter Simons 637a571b4e Merge pull request #2029 from ashalkhakov/master
Adding ATS1, updating ATS2 package.
2014-03-26 11:22:04 +01:00
Peter Simons 0cbf18a1c2 Merge pull request #2037 from ambrop72/cura
Add Cura.
2014-03-26 11:11:56 +01:00
Jaka Hudoklin 72d8c4225b Add seyren, an alerting dashboard for Graphite 2014-03-25 23:45:11 +00:00
ambrop7@gmail.com 5f2167627e Add Cura. 2014-03-25 23:17:17 +01:00
vi b5acc84ff3 Mnemosyne: provide capacity to override dependencies at the fidelity of a Python package. 2014-03-26 00:37:14 +08:00
Artyom Shalkhakov 0242b3c6ac Adding ATS1, updating ATS2 package. 2014-03-25 04:53:13 +01:00
Austin Seipp 33e4adc325 mps: version 1.113.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-24 20:32:39 -05:00
Jaka Hudoklin 70a4c7b1df nixos: fix linux containers (systemd-nspawn, lxc, lxc-libvirt)
- Make dhcp work, use dhcpcd without udev in container
- Make login shell work, patch getty to not wait for /dev/tty0
- Make ssh work, sshd/pam do not start session
2014-03-24 23:59:50 +01:00
vi ed7c311876 Include Mnemosyne in nix packages collection. 2014-03-25 02:58:21 +08:00
Shea Levy d4c711ee1d Add memcache php module 2014-03-24 08:37:36 -04:00
Shea Levy d4b28df8a2 Merge branch 'mplayer_vdpau' of git://github.com/matejc/nixpkgs
mplayer: add option config.mplayer.vdpauSupport
2014-03-23 20:54:59 -04:00
Vladimír Čunát 11492176d5 xorg: add "intel-testing" video driver, currently 2.99.911 2014-03-23 22:10:56 +01:00
Matej Cotman 6c9ecc1573 mplayer: add option config.mplayer.vdpauSupport 2014-03-23 17:27:55 +01:00
Emery Hemingway e91daf327d electrum: initial expression
Electrum is a Bitcoin thin-wallet.
https://electrum.org
2014-03-23 11:22:57 -04:00
Shea Levy be821ba0bf Merge branch 'f2fs-tools' of git://github.com/ehmry/nixpkgs
f2fs-tools: initial expression
2014-03-22 21:53:07 -04:00
Emery Hemingway d306441360 f2fs-tools: initial expression 2014-03-22 21:47:37 -04:00
Shea Levy 5fca5a4435 Merge branch 'ncdc' of git://github.com/ehmry/nixpkgs
ncdc: initial expression
2014-03-22 21:36:24 -04:00
Emery Hemingway ed7f95be88 ncdc: initial expression
http://dev.yorhel.nl/ncdc
2014-03-22 21:21:24 -04:00
Shea Levy fc0ea57efc Merge branch 'misc-gvolicon' of git://github.com/bennofs/nixpkgs
new expression: gvolicon
2014-03-22 20:56:00 -04:00
宋文武 6a981b5141 add pitivi 0.93 2014-03-22 23:09:39 +08:00
Benno Fünfstück 3f2b74bf08 new expression: gvolicon 2014-03-22 12:50:45 +01:00
Jacob Hinkle 774d179790 Started default.nix for slrn. Not finding slang 2014-03-21 12:07:56 -06:00
Vladimír Čunát 1941168c3d Merge branch master into x-updates (fix eval) 2014-03-21 13:46:56 +01:00
Vladimír Čunát f3f6f04c7d fix eval after e4961c6 2014-03-21 13:46:31 +01:00
Moritz Ulrich 8edc5f9999 weechat: Backport fix for freeze with gnutls 3.2.
Fixes /exit when using gnutls 3.2. This is a temporary solution as 3.1
isn't building right now. The next release of weechat will include this
fix.
2014-03-21 13:26:23 +01:00
Lluís Batlle i Rossell 23464b3241 Making more programs use readline63.
Specially those I use.
2014-03-21 11:59:57 +01:00
Vladimír Čunát ad8adf12a4 mesa: major update to 10.0.4, seems to work finally 2014-03-21 10:34:19 +01:00
Shea Levy e4961c63f7 Remove sec_perm patch that was needed by AUFS
Now the kernel is unpatched by default on non-MIPS!
2014-03-21 04:37:23 -04:00
Austin Seipp 2646eac8b2 z3: version 4.3.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-21 02:50:54 -05:00
Vladimír Čunát 20696f1620 libchop: builds with gnutls32 now 2014-03-21 07:23:43 +01:00
Shea Levy f4c989ede4 Merge branch 'master' of git://github.com/hrdinka/nixpkgs
conky: add config options
2014-03-20 20:14:14 -04:00
Austin Seipp 0c3bb487c3 ssdeep: version 2.10
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-20 13:18:51 -05:00
Lluís Batlle i Rossell 29dae7ef33 Trying to fix GNU readline 6.3 build on Darwin
I copied the stdenv override used for readline 6.2.

Peter Simons notified me of the failure:
http://hydra.nixos.org/build/9672338
2014-03-20 16:12:30 +01:00
Lluís Batlle i Rossell a4c4129477 Adding GNU readline 6.3 apart
I set bashInteractive to use it, as it has many relevant fixes.
2014-03-20 13:00:46 +01:00
Shea Levy 608f436da3 Add ngircd IRC server 2014-03-19 21:03:19 -04:00
Shea Levy 789cbfdced Merge branch 'ekho' of git://github.com/iyzsong/nixpkgs
add ekho 5.8.2, a Chinese TTS software
2014-03-19 18:26:18 -04:00
Shea Levy a1fff61e4d Merge branch 'u/vimrc' of git://github.com/wizeman/nixpkgs
vimHugeX: also add wrapper for system-wide vimrc
2014-03-19 18:07:04 -04:00
Vladimír Čunát 3cf4029981 Merge pull request #1972 from vcunat/p/procps
procps-ng: make it the default procps (name and attr)
2014-03-19 17:54:30 +01:00
Domen Kozar 902b059967 Add shotwell 1.15.1 2014-03-18 18:23:13 +01:00
Georges Dubus 24e9c676d2 python: update 3.4.0 to stable release 2014-03-17 17:07:20 +01:00
Eelco Dolstra ea1cd70128 geoip: Convert to mkDerivation
Also, drop unused zlib dependency and add some meta attributes.
2014-03-17 11:23:59 +01:00
Domen Kozar 11874b9e3b add Planetary Annihilation: next-generation RTS that takes the genre to a planetary scale 2014-03-16 23:31:08 +01:00
mornfall fe995cdedc Merge pull request #1775 from thoughtpolice/duo_unix
Duo Security module and uid/gid support for /etc files
2014-03-16 23:06:01 +01:00
mornfall ec353692ad Merge pull request #1849 from thoughtpolice/criu
criu: version 1.2
2014-03-16 22:58:54 +01:00
Vladimír Čunát ca09a878d0 procps-ng: make it the default procps (name and attr) 2014-03-16 19:07:38 +01:00
Austin Seipp 47b35d5e80 criu: version 1.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-16 07:16:34 -05:00
Christoph Hrdinka 26d5d506c9 conky: add config options 2014-03-16 12:30:15 +01:00
Cillian de Róiste 1661501465 ardour: make ardour3 the default and remove ardour 2, it doesn't build 2014-03-16 11:32:56 +01:00
Shea Levy 3c8f5c2471 Merge branch 'fasd' of https://github.com/ellis/nixpkgs
Create package for 'fasd'
2014-03-15 15:52:41 -04:00
Ellis Whitehead 44b6766f5d Create package for 'fasd' 2014-03-15 20:33:10 +01:00
Shea Levy dddb4f45e9 Merge branch 'pr-wqy' of git://github.com/PkmX/nixpkgs
Bump wqy-zenhei font to the latest version and add wqy-microhei
2014-03-15 13:22:31 -04:00
Shea Levy 80ed0ff85f Merge branch 'ocaml-oasis' of git://github.com/maggesi/nixpkgs
Ocaml oasis
2014-03-15 13:14:14 -04:00
Shea Levy da184a455f Merge branch 'vmpk' of git://github.com/iyzsong/nixpkgs
add vmpk 0.5.1, a virtual midi piano keyboard
2014-03-15 12:22:18 -04:00
Shea Levy a330e244ad Revert "Merge branch 'nix-run' of git://github.com/rickynils/nixpkgs"
nix-run's functionality is subsumed by nix-shell -p.

This reverts commit 3cc2b243c7, reversing
changes made to 4d5d6aed29.
2014-03-15 08:15:22 -04:00
Jaka Hudoklin 58e0383d93 Add node-webkit, app runtime based on Chromium and node.js 2014-03-15 09:43:56 +00:00
宋文武 9ce62a1ae6 add vmpk 0.5.1, a virtual midi piano keyboard 2014-03-15 13:13:25 +08:00
Shea Levy d1e88c4625 Unconditionally compile itk with shared libs 2014-03-14 20:18:17 -04:00
Shea Levy 645d54c35d Merge branch 'itk-shared' of git://github.com/jacobhinkle/nixpkgs
Added sharedLibs option to ITK
2014-03-14 20:11:33 -04:00
Shea Levy 04fe6405e4 Merge branch 'ocaml-updates' of git://github.com/maggesi/nixpkgs
Make OCaml 4.01.0 the default version of OCaml
2014-03-14 19:58:02 -04:00
Shea Levy 5a38bfdb9c Merge branch 'darcsum' of git://github.com/falsifian/nixpkgs
Added darcsum, "a pcl-cvs like interface for managing darcs patches".
2014-03-14 19:42:27 -04:00
Shea Levy 3cc2b243c7 Merge branch 'nix-run' of git://github.com/rickynils/nixpkgs
Add nix-run and myEnvRun
2014-03-14 18:52:50 -04:00
Shea Levy da17e151d8 Merge branch 'pkgs/openvpn/openvpn_learnaddress' of git://github.com/offlinehacker/nixpkgs
add openvpn_learnaddress script
2014-03-14 18:39:28 -04:00
Jacob Hinkle f5edf3244f Added sharedLibs option to ITK 2014-03-14 16:29:24 -06:00
Eelco Dolstra 2156be8449 Don't enable Flash by default in the Firefox wrapper 2014-03-14 13:37:50 +01:00
Domen Kozar c0c835dcce keybinder: add gtk3 support 2014-03-14 12:09:19 +00:00
宋文武 aa42830538 add ekho 5.8.2, a Chinese TTS software 2014-03-14 13:18:19 +08:00
Corey O'Connor 9b79d5b298 Add jenkins continuous integration server and user.
By default the jenkins server is executed under the user "jenkins". Which can be configured using
users.jenkins.* options. If a different user is requested by changing services.jenkins.user then
none of the users.jenkins options apply.

This patch does not include jenkins slave configuration. Some config options will probably change
when this is implemented.

Aspects like the user and environment are typically identical between slave and master. The service
configs are different. The design is for users.jenkins to cover the shared aspects while
services.jenkins and services.jenkins-slave cover the master and slave specific aspects,
respectively.

Another option would be to place everything under services.jenkins and have a config that selects
master vs slave.
2014-03-13 13:01:49 -07:00
Cillian de Róiste fcfbe753e7 Add synfig: A 2D animation program 2014-03-13 01:14:05 +01:00
Rickard Nilsson 040df9c41a New package: solr 4.7.0, a Java search platform 2014-03-12 23:14:09 +01:00
Rickard Nilsson ec3dbdf93d New package: winstone 0.9.10, a Java Servlet container 2014-03-12 23:14:09 +01:00
Peter Simons 23807bbe97 Merge pull request #1925 from wkennington/master.notbit
notbit: Add Package
2014-03-12 19:00:31 +01:00
William A. Kennington III 635cb24bb1 notbit: Add Package 2014-03-12 11:28:16 -05:00
Peter Simons c4784335d0 Merge pull request #1921 from kosmikus/ghc-7.8.1
Add GHC-7.8.1-rc2.
2014-03-12 11:33:01 +01:00
aszlig c7bac81c66
Merge 'mingw-w64' and 'darwin' into cross-win-osx.
Both branches have quite a lot in common, so it's time for a merge and
do the cleanups with respect to both implementations and also generalize
both implementations as much as possible.

This also closes #1876.

Conflicts:
	pkgs/development/interpreters/lua-5/5.2.nix
	pkgs/development/libraries/SDL/default.nix
	pkgs/development/libraries/glew/default.nix
	pkgs/top-level/all-packages.nix
2014-03-12 10:16:51 +01:00
aszlig 3940b21988
cctools-port: Pass through wrapped XCToolchain.
At the moment, this includes only dyldinfo, dwarfdump and dsymutil, but
we'll see whether we need more of these utilities later.

Tho reason those are wrapped in cctools-port is because it is the
binutils used to cross-compile for Mac OS X.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:46 +01:00
aszlig 45cd9994bc
darwin: Add new package maloader.
This is the mentioned Mach-O loader that we're yoing to use to execute
Apple's proprietary binaries.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:45 +01:00
aszlig 53a267e535
darwin: Add new package opencflite.
This provides a port of Mac OS X's CoreFoundation and is needed if we
want to be able to run dsymutil using maloader.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:45 +01:00
aszlig 9a0a85827c
gcc-4.8: Hook in cross-darwin libc and binutils.
Let's finally hook everything into the existing cross-building
infrastructure. We're using --with-sysroot instead of --with-headers
here, because the XCode SDK contains references to /usr/lib.

I've tried to patch those references, but unfortunately (at least with
install_name_tool) it isn't possible to change those refernces in stub
dylibs.

So after bugging @tpoechtrager with annoying questions (thanks again), I
think my initial approach (patching the SDK itself and/or regenerating
the dylib stubs) was way to complicated so I ended up with this
implementation.

Also, I've added a condition to binutilsCross to use cctools if the libc
is set to libSystem. This might need some cleanups someday, mainly to
figure out how to properly bridge cctools and binutils.

So, as an example on how to cross-compile GNU Hello to Darwin, you can
use something like this:

(import <nixpkgs> {
  crossSystem = {
    config = "x86_64-apple-darwin13";
    arch = "x86_64";
    libc = "libSystem";
    platform = {};
  };
}).hello.crossDrv

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:44 +01:00
aszlig dd10bb3181
Add a cross-platform port of cctools.
This basically is binutils for Mac OS X, but ported to work on
(GNU/)Linux and FreeBSD.

And it's up-to-date as well! I'm mentioning this, because it was quite
hard to find a recent port of it and I just accidentally stumbled on it
while trying to do the port by myself.

So thanks to @tpoechtrager for doing this.

Also, I've added two more patches, which essentially are:

 * ld-rpath-nonfinal:
     This allows -rpath to be used for linking non-final builds, which
     was allowed for earlier versions of cctools and got a check for
     that in more recent versions.

 * ld-ignore-rpath-link:
     Ignores the -rpath-link option, because the cross-wrapper uses it
     in different places. Unfortunately, the cctools linker doesn't
     support it, so we might need to implement this later if it's
     possible (I'm not a Mach-O man^H^H^Hexpert).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:44 +01:00
aszlig 83dd414ca2
Add new package for Apple's XCode.
This package provides the SDK and standard library needed for
cross-compiling to Mac US X. We're using xpwn here to extract the DMG.

Also, this version (XCode 5.0.2) only contains the SDKs for version 10.9
and 10.8, so we might need to add requireFile directives for older
versions as well.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:43 +01:00
aszlig 5e565754ab
Add new package "xpwn" from @dborca's fork.
This really hase some nice utilities for coping with HFS+ and DMG
format. We're going to use it for extracting the xcode DMG, but it could
be used for more, even generating DMGs.

The reason I'm using the fork instead of the repository from
@planetbeing is thet the fork contains a few fixes, especially for
dealing with symlinks in HFS+ images.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-12 10:00:43 +01:00
Vladimír Čunát ef825eaca7 libproxy: attempt to fix build on Darwin
It seems it won't compile with too old compilers.
2014-03-12 07:11:15 +01:00
Andres Loeh b2b4e46198 Add GHC-7.8.1-rc2. 2014-03-11 20:14:24 +01:00
Ricardo M. Correia 05a2b88df7 vimHugeX: also add wrapper for system-wide vimrc 2014-03-10 23:40:59 +01:00
Domen Kožar 2de56d103c Merge pull request #1837 from falsifian/apt-offline
apt-offline: offline APT package manager
2014-03-10 21:39:43 +01:00
Ricardo M. Correia d999872b8d grsecurity: Update stable and test patches
stable: 3.0-3.2.55-201403022154 -> 3.0-3.2.55-201403072107
test:   3.0-3.13.5-201403031445 -> 3.0-3.13.6-201403072241
2014-03-10 17:23:17 +01:00
Eelco Dolstra 356cdcd48e Remove comment 2014-03-10 15:26:06 +01:00
Eelco Dolstra 203f4d6ec8 firefoxWrapper: Fix the name 2014-03-10 15:25:47 +01:00
Eelco Dolstra e167cf9f21 Make appendToName do the right thing
I.e. append a suffix *before* the version, rather than after.  So we
get "sqlite-interactive-3.8.0.2" instead of
"sqlite-3.8.0.2-interactive".  The latter is broken since nix-env just
sees it the suffix as part of the version, so "nix-env -u" will
happily upgrade "sqlite-3.8.0.2-interactive" to "sqlite-3.9".
2014-03-10 15:01:56 +01:00
Domen Kožar 498c1e25fb Merge pull request #1907 from offlinehacker/pkgs/pythonPackages/improvements
Python improvements
2014-03-10 12:06:26 +01:00
Jaka Hudoklin a33891973a pythonPackages: syntax improvements
- import pkgs.lib by default, there's no reason why not
- Define `isPy*` helper functions for all python versions
- Define `pythonName` that returns unique python name based on `isPy*`
  helpers
- Fix `python2.7` version detection
- Fix pythonPackages importing(with) for `python2.7` only packages
2014-03-10 11:30:05 +01:00
Cillian de Róiste 12b50bb9f6 add ams-lv2: An LV2 port of the internal modules found in Alsa Modular Synth 2014-03-09 22:14:56 +01:00
Cillian de Róiste 658d8593ea add lvtk: A set C++ wrappers around the LV2 C API 2014-03-09 22:14:56 +01:00
Cillian de Róiste 7aa008d1b8 Merge branch 'ingen' 2014-03-09 20:35:20 +01:00
Cillian de Róiste d21323cbf8 add ingen: A modular audio processing system using JACK and LV2 or LADSPA 2014-03-09 20:32:06 +01:00
Cillian de Róiste f6104c8882 add ganv: An interactive Gtk canvas widget for graph-based interfaces 2014-03-09 18:20:45 +01:00
Cillian de Róiste acd2064859 Add raul: A C++ utility library primarily aimed at audio/musical applications 2014-03-09 18:00:52 +01:00
Bjørn Forsman 8d18d58f91 can-utils: new package
CAN userspace utilities and tools (for use with Linux SocketCAN).

There is no real "homepage" for this project (the only thing I could
find was the gitorious page) and they haven't produced any proper
releases (source archives and/or git tags), even though git history goes
back to 2006 and things seem stable.
2014-03-09 14:19:39 +01:00
Vladimír Čunát 5729457d50 Merge: remove poppler_0_18 from libreoffice 2014-03-09 11:43:11 +01:00
Bjørn Forsman 28e28acc36 gqrx: new package
Gqrx is a software defined radio receiver powered by GNU Radio and the Qt
GUI toolkit. It can process I/Q data from many types of input devices,
including Funcube Dongle Pro/Pro+, rtl-sdr, HackRF, and Universal
Software Radio Peripheral (USRP) devices.

http://gqrx.dk/
2014-03-08 21:46:13 +01:00
Bjørn Forsman 24d9bc576a gnuradio-osmosdr: new package
This is a Gnuradio block for OsmoSDR and rtl-sdr.

http://sdr.osmocom.org/trac/wiki/GrOsmoSDR
2014-03-08 21:46:13 +01:00
Bjørn Forsman c33495b749 saleae-logic: align attr name with pkg name (saleaeLogic -> saleae-logic) 2014-03-08 21:46:13 +01:00
Bjørn Forsman f0af1e7512 rtl-sdr: new package
rtl-sdr turns your Realtek RTL2832 based DVB dongle into a SDR receiver.

http://sdr.osmocom.org/trac/wiki/rtl-sdr
2014-03-08 21:46:12 +01:00
Peter Simons bb37028fcc duplicity: add missing 'lockfile' build input 2014-03-08 13:30:40 +01:00
Vladimír Čunát 8db9fe47fe poppler_0_18: remove, only used by libreoffice
I need to test libreoffice still builds, so I push this to x-updates.
(I hate having to do such things to try a couple of jobs.)
2014-03-08 11:26:03 +01:00
José Romildo Malaquias 69a3372f3f Added hexchat 2014-03-07 21:52:36 +01:00
Shea Levy d690e2ef7a Merge branch 'jitsi' of git://github.com/berdario/nixpkgs
Added jitsi
2014-03-07 10:51:41 -05:00
Domen Kožar 1dd36bc23f remove gnutls2 leftovers 2014-03-07 16:16:15 +01:00
Rob Vermaas 7047235acb Now properly add nvidiabl. 2014-03-07 16:08:38 +01:00
Domen Kožar 8de3d9976c Revert "Add nvidiabl kernel module"
This reverts commit d1cc2c6c37.
2014-03-07 16:02:29 +01:00
Thomas Tuegel 9906b7da34 Add vobsub2srt-git-20140226-b70b6f5 2014-03-07 15:00:59 +01:00
Domen Kozar 45ee892229 #1728: Build doxygen without checking for qt4 (fails on darwin) 2014-03-07 14:55:44 +01:00
Thomas Tuegel 1b3360a28f Add biber-1.8 and dependencies 2014-03-07 14:49:48 +01:00
Domen Kožar 0592916851 Merge pull request #1680 from Calrama/seafile
Add packages for libzdb, libsearpc, ccnet, seafile-shared, and seafile-c...
2014-03-07 13:51:17 +01:00
Domen Kožar 7a11e9c387 Merge pull request #1704 from iyzsong/guile-xcb
add guile-xcb 1.3
2014-03-07 13:35:57 +01:00
Moritz Ulrich 29a906b2d8 dfu-programmer: New package. 2014-03-07 13:28:33 +01:00
Domen Kožar 58accbc745 Merge pull request #1821 from AndersonTorres/master
8086tiny: new package
2014-03-07 13:18:12 +01:00
Domen Kožar 676f10f037 Merge pull request #1855 from kirelagin/master
Add Symbola font
2014-03-07 13:15:17 +01:00
Domen Kožar 152f87cc47 Merge pull request #959 from wizeman/vimrc
vim: add config option to generate global vimrc
2014-03-07 12:56:15 +01:00
Domen Kožar 2ff577e558 Merge pull request #1861 from ttuegel/pcmanfm
Add pcmanfm-1.2.0
2014-03-07 12:27:10 +01:00
Shea Levy 5dcb18610a Merge branch 'master' of git://github.com/esterlus/nixpkgs
added telegram-cli as instant-messenger application
2014-03-07 04:37:09 -05:00
Rob Vermaas d1cc2c6c37 Add nvidiabl kernel module 2014-03-06 16:58:23 +01:00
Michael Raskin 97d291d040 Remove obsolete comment 2014-03-05 17:38:40 +04:00
Michael Raskin a9a728af64 Fresh bitlbee builds with GNU TLS 3 2014-03-05 13:26:41 +04:00
Ronny Esterluss e0eb72cd17 added telegram-cli as instant-messenger application 2014-03-04 23:19:48 +01:00
Eelco Dolstra c824acb84c Rename misleadingly named gnutls/default.nix (it's not the default) 2014-03-04 22:33:20 +01:00
Eelco Dolstra 738a5321bc gnutls: Update to 3.2.12, 3.1.22
CVE-2014-0092

Unfortunately, 3.2.12 doesn't pass the tests with Guile bindings
enabled, so I've turned them off in the default build.
2014-03-04 22:31:02 +01:00
Dario Bertini 26d42a894a
Added jitsi 2014-03-04 13:17:57 +01:00
aszlig 1771e07e20
os-specific/windows: Add new package cygwinSetup.
This is primarily going to be used for vmTools.runInWindowsVM, but in
theory, it could also work with Nix on CygWin which I haven't tested.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-03 23:18:33 +01:00
aszlig e64b342fa8
Use mingw-w64 for 32bit Windows builds as well.
Mingw(32) is rather poorly maintaned and has quite a lot of bugs. And
because our Windows cross builds were also poorly maintained and most of
the cross-tests were broken as well, I'm just taking this step and try
to switch to mingw-w64 for everything "cross Windows".

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-03 22:38:48 +01:00
Domen Kožar 83771bd926 add python 3.4.0rc2 2014-03-03 14:21:28 +01:00
Eelco Dolstra 497997cc38 Move generation of coverage reports from nixos/lib/testing to releaseTools
Also, turn some stdenv adapters into setup hooks.
2014-03-03 13:57:08 +01:00
Pascal Wittmann af3cf0dbeb Add structured-haskell-mode 2014-03-03 11:55:26 +01:00
Ricardo M. Correia 69a83ba99f grsecurity: Update stable and test patches
stable: 3.0-3.2.55-201402221305 -> 3.0-3.2.55-201402241936
test:   3.0-3.13.4-201402221308 -> 3.0-3.13.5-201402241943
2014-03-03 02:16:58 +01:00
Thomas Tuegel 90759ebf63 Add pcmanfm-1.2.0 2014-03-01 12:39:11 -06:00
Eelco Dolstra 405ea01e67 Add aangifte-2013 2014-03-01 16:54:16 +01:00
Kirill Elagin 72783a8c5b Add Symbola font 2014-02-28 21:55:07 +04:00
Eelco Dolstra 6c77e15f19 doxygen: Remove 1.7
Current 1.8 seems to generate LaTeX output fine.
2014-02-28 18:33:45 +01:00
Peter Simons 88078e4379 flashtool: clean up the build some more 2014-02-28 12:13:46 +01:00
Peter Simons 6c6c145ffc all-packages.nix: strip trailing whitespace 2014-02-28 11:02:46 +01:00
Peter Simons 21234d5f1a flashtool: add version 0.9.14.0 2014-02-28 11:02:31 +01:00
mornfall d74c40d6bf Merge pull request #1848 from thoughtpolice/cb0cat
cb0cat: version 20131216153906
2014-02-27 19:50:40 +01:00
mornfall 5fe6abc099 Merge pull request #1824 from thoughtpolice/ktap
ktap: add v0.5-dev from git
2014-02-27 19:48:29 +01:00
mornfall 3b41a4ef0e Merge pull request #1822 from thoughtpolice/spark
spark: version 0.9.0
2014-02-27 19:47:53 +01:00
Matthew Sackman 5e09175765 add serfdom (close #1672) 2014-02-27 19:18:28 +01:00
Domen Kožar 65a34b7f85 add kazam 2014-02-27 16:37:35 +01:00
Domen Kožar 9019998576 refactor cython into pythonPackages, fixes #1803 2014-02-27 16:37:35 +01:00
Domen Kožar ab0aae42a4 couchdb: remove redundant customConfigFile 2014-02-27 14:34:19 +01:00
Domen Kožar c23ec33c77 Add selenium-server-standalone (submitted by coreyoconnor) 2014-02-27 13:06:33 +01:00
Austin Seipp 2059d4c339 cb0cat: version 20131216153906
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-27 00:01:59 -06:00
Eelco Dolstra db9d204d33 Merge remote-tracking branch 'origin/master' into glibc-2.19 2014-02-26 12:42:03 +01:00
James Cook 2294553cb1 apt-offline: offline APT package manager 2014-02-25 21:33:51 -08:00
Shea Levy a0a9430869 Add mariadb 2014-02-24 15:34:57 -05:00
aszlig 44cfba7950
mingw-w64-pthreads: Create based on mingw-w64.
The winpthreads library is part of the same source package, so let's
just override the name and the source directory.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-02-24 07:26:24 +01:00
Austin Seipp 60728bc46c ktap: add v0.5-dev from git
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-23 22:29:56 -06:00
Austin Seipp 55ac3b0a93 spark: version 0.9.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-23 22:29:08 -06:00
Austin Seipp ff79e2f900 duo_unix: version 1.9.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-23 22:00:41 -06:00
AndersonTorres 2c09d55904 Merge remote-tracking branch 'upstream/master' 2014-02-24 00:07:02 -03:00
AndersonTorres 4670b503b1 New package: 8086tiny, a tiny 8086 emulator 2014-02-24 00:01:43 -03:00
Cillian de Róiste f6aba32af3 ardour3: update 3.5.308 -> 3.5.357 2014-02-23 19:14:27 +01:00
Matej Cotman 0df7152c8f twmn: add twmn to all-packages.nix 2014-02-22 18:17:19 +01:00
Ricardo Correia 39fbd8f4fb Merge pull request #1771 from thoughtpolice/grsec-tools
grsecurity: add gradm, paxctl, and pax-utils (take #2)
2014-02-22 18:14:57 +01:00
Vladimír Čunát 351f704091 Merge x-updates into master
There's a major dbus bump (1.6 -> 1.8), and various minor fixes and updates.
2014-02-22 11:28:51 +01:00
Austin Seipp 4631a65c43 grsecurity: add pax-utils-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:56 -06:00
Austin Seipp c2e4ccd4ad grsecurity: add paxctl-0.7
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:17:53 -06:00
Austin Seipp f1459cd4b0 grsecurity: add gradm-3.0-201401291757
This also ensures the appropriate udev rules are installed.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-21 13:14:11 -06:00
Ricardo Correia 308015e213 Merge pull request #1801 from thoughtpolice/kernel-grsec
kernel: stable updates, grsecurity patch updates
2014-02-21 19:23:49 +01:00
Domen Kožar 68a5b5e5fb add xarchiver: GTK+2 only frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only) 2014-02-21 13:19:25 +01:00
Domen Kožar 0ca4f087b3 Merge pull request #1797 from lethalman/empathy
new empathy, folks and clutter-gst packages, with related lib changes
2014-02-21 12:56:51 +01:00
Luca Bruno 3991f590f4 empathy: new package
Messaging program which supports text, voice, video chat,
and file transfers over many different protocols

https://wiki.gnome.org/Apps/Empathy
2014-02-21 11:47:19 +01:00
Luca Bruno 9f5beec66f clutter-gst: new package 2014-02-21 09:52:31 +01:00
Austin Seipp 18f65f3640 grsecurity: stable/testing updates
- stable:  3.0-3.2.55-201402192249 -> 3.0-3.2.55-201402201903
  - testing: 3.0-3.13.3-201402192252 -> 3.0-3.13.4-201402201908

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 20:21:16 -06:00
cillianderoiste f47d6a1314 Merge pull request #1792 from larkery/davmail-and-lxappearance
Add lxappearance and davmail
2014-02-20 23:08:04 +01:00
Vladimír Čunát ae5d8f6768 Merge master into x-updates 2014-02-20 20:55:31 +01:00
Ricardo M. Correia 2537b7c679 vim: add config option to generate vimrc 2014-02-20 14:08:42 +01:00
Peter Simons 676f44eb04 Merge pull request #1790 from thoughtpolice/checksec
checksec: version 1.5
2014-02-20 12:03:24 +01:00
Austin Seipp 7411fabd3e checksec: version 1.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-20 04:26:17 -06:00
Tom Hinton f6ba040bdc Add me to maintainers list
Add a derivation for davmail
Add a derivation for lxappearance
Add both new derivations to all-packages
2014-02-20 09:49:50 +00:00
Cillian de Róiste 77041cbf45 linuxsampler: fix the build by using bison2 2014-02-19 23:50:24 +01:00
Vladimír Čunát dcf6cbf5b3 glib: add -tested variant, also to the unstable job
Replaces #1753.
2014-02-18 20:27:23 +01:00
Domen Kožar 810eff6087 Merge pull request #1769 from lethalman/epiphany
Epiphany: new package
2014-02-18 09:10:30 +01:00
Moritz Ulrich 53b6744646 teensy-loader: New package
Firmware uploader for the teensy microcontroller board family.
2014-02-18 01:02:47 +01:00
Luca Bruno 92f9949e09 epiphany: new package
WebKit based web browser for GNOME

https://wiki.gnome.org/Apps/Epiphany
2014-02-18 00:13:14 +01:00
Bjørn Forsman 493adc9227 Rename 'gnome-terminator' to 'terminator'
Align the package name with what other distros call it.

Other distros: Fedora, Debian, Archlinux, OpenSUSE, Mageia, Slackware
(and probably more).
2014-02-17 20:56:03 +01:00
Bjørn Forsman 0fa9dca362 gnome-terminator: add missing dependencies (for extra features)
Add 'keybinder' and 'python-notify' as dependencies. Fixes this:

  $ terminator
  [...]
  Warning: python-keybinder is not installed. This means the hide_window shortcut will be unavailable
  [...]
  ActivityWatch plugin unavailable: please install python-notify
2014-02-17 20:53:55 +01:00
Bjørn Forsman 1d1667b7b0 keybinder: new package
keybinder is a library for registering global keyboard shortcuts.
keybinder works with GTK-based applications using the X Window System.

https://github.com/engla/keybinder/
2014-02-17 20:50:22 +01:00
Austin Seipp c137015328 grsecurity updates.
- stable:  3.0-3.2.54-201402062221 -> 3.0-3.2.55-201402152203
  - testing: 3.0-3.13.3-201402132113 -> 3.0-3.13.3-201402152204

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-17 07:27:51 -06:00
Luca Bruno 9d34103a57 gucharmap: new package
GNOME Character Map, based on the Unicode Character Database

https://wiki.gnome.org/Apps/Gucharmap
2014-02-17 12:51:30 +01:00
Domen Kožar 7f2a372a37 Merge pull request #1757 from lethalman/yelp
Yelp and yelp-xsl
2014-02-16 12:05:00 +01:00
Bjørn Forsman bb8a891412 python26: update dependency 'db44' to 'db47'
I downgraded too aggressively from db5 to db4. db48 doesn't work but
db47 does, so there is no need to downgrade further.
2014-02-16 12:01:14 +01:00
Vladimír Čunát 96f07fa74e Merge master into x-updates 2014-02-16 11:45:02 +01:00
Luca Bruno da36d7d220 yelp: new package
Yelp is the help viewer in Gnome.

https://wiki.gnome.org/Apps/Yelp
2014-02-16 11:43:35 +01:00
Bjørn Forsman 26d7645b6b python26: unbreak build (revert from db5 to db44)
The bsddb module is apparently not compatible with db5 (or db48), so switch
back to db44. Fixes the following build error:

  $ nix-build -A python26.modules
  these derivations will be built:
    /nix/store/5zcqmpa4iby0aa342psjph0byiyikm6h-python-bsddb-2.6.8.drv
  building path(s) `/nix/store/qpsjyx7nmxhm9zq40674wr67dx8w6ycl-python-bsddb-2.6.8'
  building /nix/store/qpsjyx7nmxhm9zq40674wr67dx8w6ycl-python-bsddb-2.6.8
  unpacking sources
  unpacking source archive /nix/store/2qwc1kd8allnaljm1z360lv9jsf8cfqy-Python-2.6.8.tar.bz2
  source root is Python-2.6.8
  patching sources
  applying patch /nix/store/cfk04ans56xql9l6waqhqzzd60g9rzxi-search-path.patch
  patching file setup.py
  Hunk #1 succeeded at 424 (offset 145 lines).
  applying patch /nix/store/dxscwf37hgq0xafs54h0c8xx47vg6d5g-nix-store-mtime.patch
  patching file Python/import.c
  Hunk #1 succeeded at 747 (offset -4 lines).
  configuring
  building
  running build_ext
  INFO: Can't locate Tcl/Tk libs and/or headers
  Traceback (most recent call last):
    File "./setup.py", line 2037, in <module>
      main()
    File "./setup.py", line 2032, in main
      'Lib/smtpd.py']
    File "/nix/store/xxzwak31qql6vq7v35xmq68zmjpfr5py-python-2.6.8/lib/python2.6/distutils/core.py", line 152, in setup
      dist.run_commands()
    File "/nix/store/xxzwak31qql6vq7v35xmq68zmjpfr5py-python-2.6.8/lib/python2.6/distutils/dist.py", line 975, in run_commands
      self.run_command(cmd)
    File "/nix/store/xxzwak31qql6vq7v35xmq68zmjpfr5py-python-2.6.8/lib/python2.6/distutils/dist.py", line 995, in run_command
      cmd_obj.run()
    File "/nix/store/xxzwak31qql6vq7v35xmq68zmjpfr5py-python-2.6.8/lib/python2.6/distutils/command/build_ext.py", line 340, in run
      self.build_extensions()
    File "./setup.py", line 249, in build_extensions
      longest = max([len(e.name) for e in self.extensions])
  ValueError: max() arg is an empty sequence
  builder for `/nix/store/5zcqmpa4iby0aa342psjph0byiyikm6h-python-bsddb-2.6.8.drv' failed with exit code 1
  error: build of `/nix/store/5zcqmpa4iby0aa342psjph0byiyikm6h-python-bsddb-2.6.8.drv' failed
2014-02-16 11:28:00 +01:00
Cillian de Róiste 3250375f20 Remove dvswitch: I don't use it, and it's broken 2014-02-16 01:19:16 +01:00
Domen Kožar 3f3a3ec24c Merge pull request #1755 from lethalman/baobab
baobab: new package
2014-02-15 22:32:31 +01:00
Luca Bruno 402c1d582e baobab: new package
Graphical application to analyse disk usage in any Gnome environment.

https://wiki.gnome.org/Apps/Baobab
2014-02-15 22:21:06 +01:00