Arseniy Seroka
5ed0347063
dwb: update
2014-04-20 10:51:21 +01:00
aszlig
3378679ff9
chromium: Don't use v8 from <nixpkgs> anymore.
...
The version of v8 to use for Chromium is heavily tied to the specific
version of Chromium and thus it doesn't really make sense to use v8 from
<nixpkgs>, as we would need to have 3 different versions of v8, one for
each Chromium channel.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 14:18:25 +02:00
James Cook
ee79d43e40
ImageMagick: update to 6.8.9-0
2014-04-19 11:25:01 +01:00
AndersonTorres
cf8459fecf
Dillo: new package
...
Dillo is a lightweight, fast web browser.
2014-04-19 11:08:39 +01:00
aszlig
d072234282
chromium: Prefer local build on source derivation.
...
It doesn't make sense to do the splitting of the source code on a remote
machine, so don't try to do it.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 08:06:36 +02:00
aszlig
111caaad53
chromium: Factor out common build attributes.
...
This results in a new function called mkChromiumDerivation, which can be
used to easily build packages that are based on the Chromium source
tree.
We pass through this function as mkDerivation in the chromium wrappre,
so in the end if you want to create such a package, something like:
chromium.mkDerivation (base: {
name = "your-shiny-package-based-on-chromium";
...
})
will suffice.
Of course, this is only the first step towards this functionality,
because right now I'm not even sure the Chromium browser itself will
build.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:46 +02:00
aszlig
cad411f61d
chromium/plugins: Use Debian package from sources.
...
This now uses the Debian package from the sources derivation instead of
hardcoding it, so we finally should have proper PepperAPI plugin support
without crashing plugins and whatnot.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:45 +02:00
aszlig
6184ee89fe
chromium/update: Update Debian binaries as well.
...
This cases the Debian binaries to be fetched from Google's official APT
repository. If we aren't able to find a package from the APT repository,
it's very likely that it already got deleted upstream and we need to
fallback to mirrors instead.
Unfortunately, we can't use mirrors for updating, because Google doesn't
sign the Debian packages themselves and only the release files.
We're going to hook it into a Chromium updater soon, making the sha256
hashes publicly available, so if it is missing, we can still put the
sha256 manually into sources.nix, without risking anything by blindly
fetching from one of the provided mirrors.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:45 +02:00
aszlig
2741523926
chromium: Remove URL in sources.nix and updater.
...
The updater is now splitted between a shellscript and a Nix expression
file which contains helpers and lookup functions to reconstruct all
information needed in order to fetch the source tarballs.
This means, that the sources.nix now doesn't contain URLs and only
versions and the corresponding SHA256 hashes. Of course, right now this
sounds like it's unnecessary, but we're going to fetch binaries soon so
it's a good idea to not unnecessarily clutter up sources.nix.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:45 +02:00
aszlig
8bc8b51375
chromium: Move source package into own subdir.
...
Next, we're going to refactor update.sh and the first step is to ensure
that we keep everything related to sources into its own subdirectory to
not clutter up the main directory too much.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:44 +02:00
aszlig
202755ca2f
chromium: Properly pass packageName and version.
...
We don't want ta have the source derivation in the runtime dependencies
of the browser itself. Also, we've broken the Firefox wrapper, because
we've no longer exposed the packageName attribute.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:44 +02:00
aszlig
eadbf855b0
chromium: Revert back to copying bundled sources.
...
I'm giving up on this after several attempts to correctly unbundle the
largest part, namely Google's WebKit fork Blink. Right now it's so much
tied into the Chromium source it's going to be fairly hard to do if
you're not working full time on it.
Also, the intermediate steps needed to do this properly would introduce
uneccesary complexity on our side, so we really need to finish this
without leaving it in the "messy" state in order to not make Chromium
even more difficult to maintain than it is already.
However, anyone who wants to proceed on this messy step is free to
revert this commit and continue doing so. In my case I'm going to try
again once https://crbug.com/239107 and https://crbug.com/239181 are
fixed in _stable_ (I don't want to introduce *lots* of conditionals on
the version either).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:43 +02:00
aszlig
c6fa73b26c
chromium: Propagate browser's meta to the wrapper.
...
We obviously don't want the Hydra job of nixpkgs to fail, so we need to
make sure that we have a proper meta attribute on the outermost
derivation.
For builds based on the Chromium source tree (like for example libcef),
we can still move the wrapper elsewhere when we need it.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:43 +02:00
aszlig
cce984b324
chromium: Correct tools path in blink_idl_parser.
...
This is because of our symlink mess, as Chromium's build support scripts
are trying to resolve everything based on absolute paths and we split
off the bundled sources from the main derivation.
Yes, I'm refering to this as a mess, because in the end, we're going to
patch up the gyp files and use references someday.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:43 +02:00
aszlig
d8ba5b3eff
chromium: Add bundled dependencies for dev/beta.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:42 +02:00
aszlig
5021717099
chromium: Split off sandbox from the browser.
...
Now, we no longer tie the sandbox directly to the browser derivation but
wrap everything together into one derivation at the entry point at
default.nix.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:42 +02:00
aszlig
c86d376c82
chromium: Selectively link bundled libraries.
...
So far we just copied everything from source.* into the build directory
during the prePatch. This somewhat defeated the purpose of the source
splitup because it involved more I/O than just unpacking the entire
source tree.
Now, we're selectively *symlinking* the bundled sources into the build
directory. Even that isn't perfect because in the end we'd just
reference foreign derivations and we're done. But for now, this gets us
at least prepared for a massive reduction of compile time.
Unfortunately, gyp's behaviour when it comes to symlinks is quite
painful to come by, so we need to fix a few references to use absolute
paths.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:42 +02:00
aszlig
16af058ff9
chromium: Move plugins into its own Nix file.
...
We now no longer pass enablePepperFlash and enablePepperPDF to the
browser package itself and only use plugins.flagsEnabled from there.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:42 +02:00
aszlig
1ae328ba86
chromium: Factor out source into its own Nix file.
...
The name is a bit unfortunate, so it would make sense to rename
"sources.nix" into something else.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:41 +02:00
aszlig
88a939c2d1
chromium: Decouple browser from default.nix.
...
This currently only passes through the arguments and is nothing more
than the foundation of the new structure. In essence, I want to have a
really small default.nix which is then going down into the respective
subparts that are isolated from each other.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:41 +02:00
aszlig
c2abe4da6c
chromium: Add support for ppapi flash and PDF.
...
This is hardcoded for the dev channel at the moment and we're going to
fetch it along with the main Chromium sources.
Also I'm putting this in default.nix at the moment, because we're going
to tear apart the whole Chromium package into several subparts soon.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:41 +02:00
aszlig
c9c9ca38b9
chromium: Build using minizip from nixpkgs.
...
Well, the gyp flag mentions "zlib" but in reality, minizip is used.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:40 +02:00
aszlig
5b67290740
chromium: Build using libpng from nixpkgs.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:39 +02:00
aszlig
823b72d0ad
chromium: Build with libwebp from nixpkgs.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:39 +02:00
aszlig
2f23f57b28
chromium: Build beta/dev with v8 from nixpkgs.
...
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:38 +02:00
aszlig
9f45c2cbba
chromium: Prepare for building the -lite package.
...
We currently can't build the -lite package because beta and dev versions
aren't yet compatible with ICU version 52. But apart from that blocker,
this should get us ready for the switch.
Also, we're now correctly unbundling all dependencies which are used
from <nixpkgs>.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:37 +02:00
aszlig
e2dba7c6cf
chromium: Use version 3 of libgnome_keyring.
...
Starting with version 35, version 2 of libgnome_keyring is no longer
supported and it's probably pretty useless to do backports to version 2,
given the assumption that most users on Nix probably don't use it.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-19 03:58:37 +02:00
Bjørn Forsman
8b666e44fd
Unbreak tarball job
...
Fix undefined variable in pamixer.
2014-04-18 22:48:12 +02:00
Michael Raskin
2ceedb2d64
Merge pull request #2305 from jwiegley/ledger
...
Update ledger expression, add myself as a maintainer
2014-04-18 10:46:43 -07:00
Michael Raskin
97a3a803e1
Merge pull request #2313 from 1126/master
...
Adding pamixer.
2014-04-18 10:31:25 -07:00
Michael Raskin
b1fad4ab9b
Merge pull request #2279 from kowey/master
...
megam: New package
2014-04-18 10:19:44 -07:00
Michael Raskin
7231b6b94e
Merge pull request #2248 from ehmry/rsync
...
rsync updated 3.0.9 to 3.1.0, rsyncd service module
2014-04-18 10:17:08 -07:00
Michael Raskin
6cdce9deec
Merge pull request #2220 from taku0/thunderbird-bin-24.0.0
...
add thunderbird-bin: the binary package for Thunderbird mail client
2014-04-18 10:16:35 -07:00
Michael Raskin
d31cf5329e
Merge pull request #2075 from iyzsong/webkit
...
get rid of old webkit packages
2014-04-18 10:10:29 -07:00
_1126
25f7565657
Merge branch 'pamixer'
2014-04-18 16:09:50 +02:00
_1126
96257ea486
Adding pamixer.
2014-04-18 16:09:34 +02:00
John Wiegley
5c18bbe34f
Update ledger expression, add myself as a maintainer
2014-04-17 21:47:15 -05:00
Rok Garbas
7aa3790f34
adding development version of weechat (alongside stable)
2014-04-17 22:22:54 +01:00
Ricardo M. Correia
09f0d57842
bitcoin: Update from 0.8.6 -> 0.9.1
2014-04-17 20:47:18 +02:00
Eelco Dolstra
f2cb4def59
qemu: Update to 1.7.1
2014-04-17 15:54:42 +02:00
Domen Kožar
e325926595
Merge pull request #2300 from lethalman/gsettings
...
Fix gsettings schemas for several gtk3 apps
2014-04-17 14:29:27 +02:00
Luca Bruno
82744e57d6
pitivi: fix gsettings schemas, depend upon gnome-desktop
2014-04-17 13:42:51 +02:00
Luca Bruno
8dbdebb50f
gnumeric: fix gsettings schemas
2014-04-17 13:42:51 +02:00
Luca Bruno
64d4b9c3de
transmission-remote-gtk: fix gsettings schemas
2014-04-17 13:42:51 +02:00
Luca Bruno
6f61f7dc0d
midori: fix gsettings schemas
...
Could not test it because it does not compile for other reasons.
2014-04-17 13:42:50 +02:00
Luca Bruno
7d64d63a1c
spacefm: fix gsettings schemas
...
Could not test it as the application did not start
for other reasons.
2014-04-17 13:42:50 +02:00
Luca Bruno
4cfe7a7334
transmission-gtk: fix gsettings schemas, closes #2295
2014-04-17 13:42:50 +02:00
Austin Seipp
1a2784ee68
btsync: 1.3.77 -> 1.3.87
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-16 18:56:22 -05:00
Eelco Dolstra
a1af25033a
git send-email: Respect $OPENSSL_X509_CERT_FILE
2014-04-16 18:43:39 +02:00
Lluís Batlle i Rossell
edee246684
Updating gnunet to 0.10.1.
2014-04-16 15:22:31 +02:00
Eric Kow
9e457049e4
megam: New package
...
Maximum Entropy (GA) Model Optimization Package
2014-04-15 14:00:56 +01:00
Peter Simons
3275e47613
Merge pull request #2262 from jwiegley/git
...
On Darwin, set NO_APPLE_COMMON_CRYPTO=1 for git builds
2014-04-15 10:31:07 +02:00
Bjørn Forsman
c83903069f
gnuradio: update 3.7.2.1 -> 3.7.3
...
Changelog:
http://gnuradio.org/redmine/projects/gnuradio/wiki/ChangeLogV3_7_3/
(Build tested.)
2014-04-15 07:11:41 +02:00
Austin Seipp
6376ac57d8
emacsPackages: add cryptol-mode
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-14 18:23:51 -05:00
John Wiegley
cfe42425c3
On Darwin, set NO_APPLE_COMMON_CRYPTO=1 for git builds
2014-04-14 14:53:15 -05:00
Domen Kožar
6449bc2f23
Merge pull request #2244 from lethalman/gsettings
...
audacious, sflphone: find gsettings schemas
2014-04-14 09:43:35 +02:00
Emery Hemingway
93e9154805
rsync updated 3.0.9 to 3.1.0, rsyncd service module
2014-04-13 23:25:28 -04:00
Luca Bruno
57b6ecb799
sflphone: find gsettings schemas
2014-04-13 23:50:21 +02:00
Luca Bruno
091ce87a00
audacious: find gsettings schemas
2014-04-13 23:30:15 +02:00
Bjørn Forsman
2b9c96878c
qmmp: update 0.7.5 -> 0.7.6
...
Changes since 0.7.5:
* added libav 10 and ffmpeg 2.2 support;
* fixed url parsing;
* fixed freezing on playback resume;
* fixed random freezing in the mplayer plugin;
* fixed reset selection of tracks when calling context menu;
* fixed multimedia keys support under win32.
2014-04-13 19:07:06 +02:00
Austin Seipp
2661400d2a
cgit: bump git version to 1.9.2
...
This also updates the download URL to use kernel.org
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-13 00:47:16 -05:00
Ertugrul Söylemez
a0886ae024
keepassx: Renamed KeePassX 2.0 to keepassx2.
2014-04-13 03:28:20 +02:00
Domen Kožar
1988bbd990
Merge pull request #2231 from jwiegley/master
...
Change several package constraints from linux to unix
2014-04-13 00:24:28 +02:00
John Wiegley
010132e302
Change several package constraints from linux to unix
...
They all build on Darwin.
2014-04-12 16:01:16 -05:00
Benno Fünfstück
2fd160f027
haskell: update yi to 0.8.1
2014-04-12 20:33:15 +02:00
taku0
c4eadfbac5
add thunderbird-bin: the binary package for Thunderbird mail client
2014-04-13 00:29:14 +09:00
Cillian de Róiste
02e693c400
synthv1: update from 0.4.0 to 0.4.1
2014-04-12 11:58:29 +02:00
Cillian de Róiste
440a174e2d
samplv1: update from 0.4.0 to 0.4.1
2014-04-12 11:58:13 +02:00
Cillian de Róiste
aee930586f
drumkv1: update from 0.4.0 to 0.4.1
2014-04-12 11:57:43 +02:00
Mathijs Kwik
d87ae02fc1
synergy: upgrade to 1.4.17
2014-04-11 14:09:07 +02:00
Peter Simons
b5773eeccb
R: update to version 3.1.0
2014-04-11 12:07:00 +02:00
Peter Simons
8392c8ba9f
Merge pull request #2195 from linquize/git-1.9.2
...
git: Update to 1.9.2
2014-04-10 12:42:53 +02:00
Mathijs Kwik
3ada08785f
avidemux: make faacSupport optional
2014-04-10 11:57:20 +02:00
Linquize
ab12d10f87
git: Update to 1.9.2
2014-04-10 02:02:59 +02:00
Ricardo M. Correia
8fdf8984d2
chromium: Update stable channel from 33.0.1750.152 -> 34.0.1847.116
2014-04-10 00:14:44 +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
Peter Simons
1682bde4e0
gitAndTools.svn2git: update from 2.2.2 to 2.2.5
2014-04-09 12:41:10 +02:00
Peter Simons
c244d6e1b8
gitAndTools.stgit: update from 0.16 to 0.17.1
2014-04-09 12:41:10 +02:00
Luca Bruno
8553993887
telepathy-mission-control: add dbus service, enabled by default on gnome3
2014-04-09 00:36:52 +02:00
Ricardo M. Correia
54a8e0ed0f
flashplayer: Update from 11.2.202.346 -> 11.2.202.350
2014-04-08 17:45:52 +02:00
Peter Simons
7f90e454fb
ikiwiki: update to version 3.20140227
2014-04-08 12:48:22 +02:00
Peter Simons
79f19f687c
flymake-cursor: the sha256 hash of the file has changed
...
No change was documented on the emacs wiki. Not sure what happened. :-(
2014-04-08 12:48:22 +02:00
Peter Simons
1b1225fb0b
flymake-cursor: remove redundant 'meta.platforms = stdenv.lib.platforms.all' setting
2014-04-08 12:48:22 +02:00
Mathijs Kwik
593c633aa8
emacs-idris-mode: upgrade to support idris 0.9.12
2014-04-08 08:38:43 +02:00
Alex Berg
7dff8a8aaf
Bump Docker to v0.9.1. Tested pulling, committing, pushing.
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-07 15:08:07 -05:00
Peter Simons
ff49602b17
haskell-git-annex: update to version 5.20140405
2014-04-07 17:06:34 +02: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
Peter Simons
9000db8b1e
haskell-git-annex: update to version 5.20140402
2014-04-06 21:53:16 +02:00
Domen Kožar
29bc5feb1d
Merge pull request #2139 from lethalman/gnome3
...
Fix gsettings schemas usage for several packages due to #1901
2014-04-06 13:59:46 +02:00
Luca Bruno
35ccaa2e52
Fix gsettings schemas usage for several packages due to #1901
...
Also add icons to epiphany
2014-04-06 11:02:21 +02:00
Emery Hemingway
09cdc6edf5
f2fs-tools,ncdc: set platform and add myself to maintainers
2014-04-05 21:31:40 -04:00
Shea Levy
5441b1a98b
Merge branch 'teamviewer-fix-upgrades' of git://github.com/bjornfor/nixpkgs
...
teamviewer: fix brokenness after updates / GC
2014-04-05 18:55:48 -04:00
Shea Levy
a68c12d35b
git: Remove phony not-supported wrappers.
...
Fixes #1751
2014-04-05 18:39:53 -04:00
Bjørn Forsman
31ab1fd7ae
teamviewer: fix brokenness after updates / GC
...
Teamviewer puts symlinks to nix store paths in ~/.teamviewer. When those
paths become garbage collected, teamviewer crashes upon start because of
those broken symlinks. An easy workaround to this behaviour is simply to
delete all symlinks before we start teamviewer. Teamviewer will fixup
the symlinks, just like it did the first time the user ran it.
2014-04-06 00:23:59 +02:00
Michael Raskin
9233723353
Temporary patch for Wireshark build
2014-04-06 00:57:35 +04:00
Shea Levy
12c1321fa4
Merge branch 'master' of git://github.com/urv/nixpkgs
...
calibre: upgrade from 1.25.0 to 1.31.0
2014-04-05 15:56:55 -04:00
Shea Levy
63d91b75a1
Revert "Merge branch 'k3b' of git://github.com/ttuegel/nixpkgs"
...
It turns out this doesn't work due to setuid issues. I had been under
the impression that it was partially broken, but it is in fact totally
broken.
This reverts commit 718466074f
, reversing
changes made to ea9c8d6a13
.
2014-04-05 14:43:00 -04:00
Shea Levy
718466074f
Merge branch 'k3b' of git://github.com/ttuegel/nixpkgs
...
Wrap k3b with PATH to required tools
2014-04-05 14:38:06 -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
Vladimír Čunát
4ab58240a9
pidgin: adopt the orphan, as I use it daily
...
CC #992 .
2014-04-04 20:29:49 +02:00
Matej Cotman
7df1ce5088
syncthing: new package and nixos module
2014-04-04 10:46:29 +02:00
Arvin Moezzi
f82b678508
calibre: upgrade from 1.25.0 to 1.31.0
2014-04-04 09:25:32 +02:00
Peter Simons
f2cb92f5d4
maxima: update to version 5.33.0
2014-04-03 20:13:35 +02:00
Evgeny Egorochkin
5d34b323a5
mpv: update from 0.3.2 to 0.3.7
2014-04-03 10:46:02 +03:00
Evgeny Egorochkin
9b4080b7af
mercurialFull: update from 2.9.1 to 2.9.2
2014-04-03 10:28:15 +03:00
Evgeny Egorochkin
3830fa8195
add git repositry and meta.branch
2014-04-03 07:55:17 +03:00
ambrop7@gmail.com
0b1e408b6b
vlc: Build with VDPAU support ( close #2096 )
2014-04-02 23:14:18 +02:00
Peter Simons
4e875dd3ff
esniper: update to version 2.29.0
2014-04-02 17:44:10 +02:00
Domen Kožar
886320136e
bittorrentSync: use versioned url for download
2014-04-01 13:25:48 +02:00
Austin Seipp
010688a763
btsync: 1.2.91 -> 1.3.77
...
This also does some various cleanup on the build process. In particular,
patchelf was not properly setting the rpath so e.g. librt and libm did
not point into glibc inside the Nix store on my Ubuntu system. This
properly sets the library paths on installation.
Also, the download URL for BitTorrent Sync changed, which is incredibly
annoying, because the URL doesn't encode version information. So maybe
this will fail later. :(
(A final note: this also changes the package name from 'btsync-bin' to
just 'btsync', and cleans up some meta attributes.)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-04-01 03:52:43 -05:00
aszlig
51e449aabb
chromium: Fix build of beta and dev channels.
...
Okay, now this time we really broke beta and dev, because python_arch no
longer is in build/common.gypi anymore.
This just adds chrome/chrome_tests.gypi to the list of files to be
changed by sed.
Also, this time I did test at least whether gyp is running fine and
interrupted after the first 1000 build targets, so all channels *should*
now build fine.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-01 09:33:04 +02:00
宋文武
ede097adcb
miro: build with webkitgtk2
2014-04-01 11:11:46 +08:00
aszlig
1ae4db3a80
chromium: Fix build of stable channel.
...
Build failure on Hydra:
https://hydra.nixos.org/build/9823160
This was caused by the update of file in 5885709
.
As file seems to be used for only one substition in the gyp files, we
can now drop the build dependency on file and patch out the substition
expression, as it is done before actually testing if the value has been
set by -D (gyp, y u no have lazy eval!?).
PS: Proudly untested against beta and dev channels, redeployed my own
Hydra and building on my workstation here really is ... annoying (lavg
41 on a system with nproc 8, less than 8 GB RAM and you probably will
have as much "fun" as I just had writing this commit mess...a....g
FUCK^H^H^H^H^H^H...e).
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-04-01 04:01:58 +02:00
Peter Simons
f06bcd84bf
Merge pull request #2082 from cpages/update
...
Updates for maintained packages
2014-03-31 23:13:38 +02:00
Peter Simons
69b53c990a
structured-haskell-mode: re-generate with latest cabal2nix
2014-03-31 23:10:56 +02:00
Eelco Dolstra
0fdd641b21
Ensure that slim's theme applies to slimlock
2014-03-30 19:33:28 +02:00
Carles Pagès
66d8a9c725
yafc: update to 1.3.2
2014-03-30 18:32:14 +02:00
Evgeny Egorochkin
c53ae9b462
spaceFM: update from 0.9.2 to 0.9.4
2014-03-30 19:27:19 +03:00
Eelco Dolstra
aaf01268ff
Revert "slim: remove duplicate code"
...
This reverts commit f7d5e83abb
. It
breaks the Firefox and Xfce tests:
in job ‘tests.firefox.x86_64-linux’:
cannot coerce a boolean to a string
in job ‘tests.xfce.x86_64-linux’:
infinite recursion encountered
2014-03-30 17:06:01 +02:00
Peter Simons
c394d4079d
xmonad: fix build with ghc 7.8.1
2014-03-30 16:46:02 +02:00
宋文武
6e7fe59bb1
uzbl: build with webkitgtk2, cleanup
2014-03-30 09:52:36 +08:00
宋文武
59124ddf95
vimprobable2: update to 1.4.2
2014-03-30 07:59:32 +08:00
ambrop7@gmail.com
9a2758f98d
Add Printrun.
2014-03-29 23:17:56 +01:00
Moritz Maxeiner
99d639d750
Update Virtualbox and Guest Additions to 4.3.10, Oracle Extensions to 93012
2014-03-29 13:44:50 +01: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
1aa5589eef
Merge branch 'virtualbox' of git://github.com/Calrama/nixpkgs
...
Update VirtualBox (and implicitly VirtualBox Guest Additions) to 4.3.6
and Oracle VM VirtualBox Extension Pack to 91406
Conflicts due to minor upgrade in the mean time
Conflicts:
nixos/modules/virtualisation/virtualbox-guest.nix
pkgs/applications/virtualization/virtualbox/default.nix
pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
2014-03-29 00:23:54 -04:00
Shea Levy
63f97fe9db
Merge branch 'slim_fix' of git://github.com/jagajaga/nixpkgs
...
add normal theme support for slim and slimlock
2014-03-29 00:17:52 -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
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
Shea Levy
b574394d70
Merge branch 'dwb-update' of git://github.com/pSub/nixpkgs
...
Updated dwb to latest revision
2014-03-28 21:42:51 -04:00
Pascal Wittmann
df2e5fc47a
Updated dwb to latest revision
2014-03-28 10:30:36 +01: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
9bde84a75d
fix evaluation since 34301c8
2014-03-27 21:33:25 +01:00
Vladimír Čunát
abda7ec36f
liferea: maintenance update
2014-03-27 21:33:25 +01:00
宋文武
96d78a2804
pitivi: fix icons
2014-03-27 11:01:24 +08:00
Cillian de Róiste
de3b5b4500
Add simplescreenrecorder: an excellent screen recorder for linux
2014-03-26 23:02:33 +01:00
Cillian de Róiste
b60f8810b2
yoshimi: update from 1.1.0 to 1.2.0
2014-03-26 22:27:02 +01:00
Cillian de Róiste
fc4542c99d
qtractor: update from 0.5.12 to 0.6.0
2014-03-26 22:26:43 +01:00
Cillian de Róiste
7381035bc2
blender: update from 2.69 to 2.70
2014-03-26 22:25:40 +01:00
Edward Tjörnhammar
8af6b20856
idea: update 13.0.2 -> 13.1.1
...
And use buildnumbers only in the buildscript and use more familiar
version numbers in the package name.
[bjorn.forsman@gmail.com: modify commit message]
2014-03-26 21:21:12 +01:00
Evgeny Egorochkin
8cd858b100
ocamlPackages.mldonkey: update from 3.1.3 to 3.1.5
2014-03-26 19:20:11 +02:00
Evgeny Egorochkin
37f8bcc028
kde4_prev.quasselDaemon: update from 0.9.2 to 0.10.0
2014-03-26 19:18:15 +02:00
_1126
34301c89e1
ncmcp: New expression
2014-03-26 12:15:01 +01:00
Peter Simons
0cbf18a1c2
Merge pull request #2037 from ambrop72/cura
...
Add Cura.
2014-03-26 11:11:56 +01:00
Shea Levy
97a733ae57
Merge branch 'submit/sloane' of git://github.com/akc/nixpkgs
...
Add sloane -- a command line interface to OEIS
2014-03-26 02:42:22 -04:00
aszlig
a5a5abd2fe
chromium: Fix startup of beta and dev channels.
...
Since version 34, ICU data files are now created separately and thus
need to be installed as well.
Closes #2016
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
(cherry picked from commit f117341ff2de4b95d223b41b36942e2f60ada2a3)
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-03-26 01:33:07 +01:00
Thomas Tuegel
3d08732d12
Wrap k3b with PATH to required tools
2014-03-25 17:25:37 -05:00
ambrop7@gmail.com
5f2167627e
Add Cura.
2014-03-25 23:17:17 +01:00
Austin Seipp
289a1c5f06
ike: use stdenv.lib.licenses.sleepycat
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-24 19:58:36 -05:00
Shea Levy
ff6febb75d
sox: Update, get rid of composableDerivation
2014-03-24 12:01:20 -04:00
Mathijs Kwik
d8d8606da4
unison: upgrade to 2.40.102
2014-03-24 10:35:51 +01:00
Mathijs Kwik
149dcb2113
conkeror: upgrade to more recent snapshot
...
needed for scripting Downloads.jsm with Gecko >= 26
2014-03-24 10:35:51 +01:00
Shea Levy
a2b6ec902c
Merge branch 'master' of git://github.com/AndersonTorres/nixpkgs
...
Updating Portuguese and Brazilian language dictionaries for Aspell
2014-03-23 20:52:21 -04:00
Shea Levy
57bbdffe39
Merge branch 'electrum' of git://github.com/ehmry/nixpkgs
...
electrum: initial expression
2014-03-23 20:47:28 -04:00
Shea Levy
3d8154359a
Merge branch 'fix-openbox' of git://github.com/Shados/nixpkgs
...
Openbox: Added wrapping for XDG_DATA_DIRS
2014-03-23 20:45:26 -04:00
Peter Simons
4c5d093ae0
esniper: add patch to fix unrecognized e-bay log-in page
2014-03-23 22:30:54 +01:00
Matej Cotman
13bc37ed3e
vlc: ncurses support ( close #2012 )
2014-03-23 20:21:16 +01:00
Domen Kožar
eb2992a4c7
Merge pull request #2014 from offlinehacker/pkgs/transmission-remote-gtk/fix_filechooser_schema
...
transmission-remote-gtk: fix missing schema for gtk3 FileChooser
2014-03-23 18:06:52 +01:00
Jaka Hudoklin
6f44ffc61c
transmission-remote-gtk: fix missing schema for gtk3 FileChooser
2014-03-23 18:04:03 +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
AndersonTorres
d8648c47cf
Merge remote-tracking branch 'upstream/master'
2014-03-23 11:52:03 -03:00
Alexei Robyn
a7070743a3
Openbox: Added wrapping for XDG_DATA_DIRS
...
Fixes issue with Openbox failing to start due to not finding its default
theme
2014-03-23 21:48:36 +11: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
5c7e77d1a9
Merge branch 'master' of git://github.com/zopa/nixpkgs
...
newsbeuter: Update to 2.8
2014-03-22 20:40:59 -04:00
AndersonTorres
e48ae6a079
A minor fix to maintainers field for some packages (aegisub,mpv,8086tiny and bochs)
2014-03-22 14:30:45 -03:00
宋文武
6a981b5141
add pitivi 0.93
2014-03-22 23:09:39 +08:00
Peter Simons
d294dd7774
Merge pull request #1996 from jacobhinkle/slrn
...
Add slrn: command-line newsreader
2014-03-22 14:34:24 +01:00
Jacob Hinkle
941682efba
Remove pkgs from slrn. Use stdenv.lib instead
2014-03-22 06:58:31 -06:00
Peter Simons
ceb7673bf0
Fix broken references to 'maintainers' attribute set.
2014-03-22 10:01:42 +01:00
Peter Simons
cc8c69890b
haskell-yi: update to version 0.7.2
2014-03-22 09:04:46 +01:00
Peter Simons
441dca211e
haskell-yi-contrib: update to version 0.7.2
2014-03-22 09:04:46 +01:00
Peter Simons
fa62ab13de
haskell-git-annex: update to version 5.20140320
2014-03-22 09:04:46 +01:00
Peter Simons
57db4ba855
Merge pull request #1998 from AndersonTorres/master
...
Maintainer and license modifications for some packages
2014-03-22 09:01:07 +01:00
AndersonTorres
f7498e5a7e
Adding info about maintainer (myself - AndersonTorres) and modifying the meta.license field for some packages I have made.
2014-03-22 01:12:48 -03:00
Jacob Hinkle
715b90f784
Update default.nix to use ncurses and patch hardcoded paths
2014-03-21 14:32:21 -06:00
Jacob Hinkle
774d179790
Started default.nix for slrn. Not finding slang
2014-03-21 12:07:56 -06:00
Domen Kožar
584d696943
ike: also specify lib64 libs
2014-03-21 18:08:07 +01:00
Domen Kožar
d7bd83d0ae
shotwell: 0.15.1 -> 0.18
2014-03-21 18:02:15 +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
Austin Seipp
2646eac8b2
z3: version 4.3.1
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-21 02:50:54 -05:00
Linquize
4e385c272c
git: Update to 1.9.1
2014-03-20 15:44:25 +01:00
Evgeny Egorochkin
76f7ea6e39
add repositories.git to several packages
2014-03-20 13:32:29 +02: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
506924c6c2
Merge branch 'kdevelop46' of git://github.com/ambrop72/nixpkgs
...
kdevelop: Update to 4.6.
2014-03-19 18:11:35 -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
5bb0803254
fix evaluation (shotwell license)
2014-03-19 21:10:43 +01:00
Domen Kožar
d4b1250b6c
remove prefix for kazam
2014-03-18 18:23:13 +01:00
Domen Kozar
902b059967
Add shotwell 1.15.1
2014-03-18 18:23:13 +01:00
Anders Claesson
ac3de98f07
Add sloane -- a command line interface to OEIS.
2014-03-18 14:37:56 +00:00
William A. Kennington III
b6d3526c53
qemu: Update 1.5.2 -> 1.7.0
2014-03-18 14:24:46 +01:00
Peter Simons
5e7608e226
Merge pull request #1932 from wkennington/master.sup
...
sup: Push sup to the latest git commit
2014-03-18 12:09:20 +01:00
Vladimír Čunát
cca592b455
liferea: minor update
2014-03-18 10:24:00 +01:00
Peter Simons
bfa2466d71
haskell-xmobar: update to version 0.20.1
2014-03-17 18:33:54 +01:00
William A. Kennington III
4a112f46b1
sup: Push sup to the latest git commit
...
ncursesw was also pushed forward from 1.3.1.2 -> 1.4.6 as the packaging
was changed for the latest version of sup
2014-03-17 12:04:31 -05:00
ambrop7@gmail.com
5533e05ca1
Chromium: Add desktop entry.
2014-03-16 13:35:43 +01:00
Ricardo M. Correia
a16e1e2133
chromium: Update stable and beta channels
...
stable: 33.0.1750.149 -> 33.0.1750.152
beta: 34.0.1847.45 -> 34.0.1847.60
2014-03-16 13:26:01 +01:00
Cillian de Róiste
b57ee8c331
nixpkgs-lint: add the platforms meta attr for most of my packages
2014-03-16 12:08:26 +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
Vladimír Čunát
7ca8bd6d4f
Merge pull request #1965 from ambrop72/ktorrent-4.3.1
...
KTorrent: update to 4.3.1.
2014-03-15 23:13:50 +01:00
ambrop7@gmail.com
24f4957d50
KTorrent: Fix URLs.
2014-03-15 21:31:58 +01:00
ambrop7@gmail.com
732760bb50
Update KTorrent to 4.3.1.
2014-03-15 20:22:03 +01:00
Shea Levy
389c3951a8
Merge branch 'coq' of git://github.com/thoughtpolice/nixpkgs
...
coq: 8.4pl2 -> 8.4pl3
2014-03-15 13:03:10 -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
Vladimír Čunát
6246fad9c7
liferea: fix crash when opening file dialogs
...
The same schema issue as always in gtk3 dialogs.
2014-03-15 15:09:03 +01:00
Peter Simons
f1a30454f6
Merge pull request #1942 from thoughtpolice/fixups
...
Trivial fixes for my packages
2014-03-15 09:35:35 +01:00
宋文武
9ce62a1ae6
add vmpk 0.5.1, a virtual midi piano keyboard
2014-03-15 13:13:25 +08: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
Bjørn Forsman
562f937d21
openscad: bump 2013.06 -> 2014.03
...
openscad now depends on glib, and it needs pkgconfig to find glib.
2014-03-14 22:21:15 +01:00
Ricardo M. Correia
17b473449b
Add myself as maintainer of pkgs I wish to keep up-to-date
2014-03-14 21:22:09 +01:00
Eelco Dolstra
5a807eaedb
flashplayer: Add license field
2014-03-14 13:24:23 +01:00
Nixpkgs Monitor
b86692e00d
mpg123: update from 1.18.1 to 1.19.0
2014-03-14 11:16:56 +01:00
宋文武
aa42830538
add ekho 5.8.2, a Chinese TTS software
2014-03-14 13:18:19 +08:00
Vladimír Čunát
db9599c4a0
gnumeric: minor update 1.12.9 -> .12
2014-03-13 22:55:52 +01:00
Ben Doyle
3cbd1cd795
newsbeuter: bump development version to latest master
2014-03-13 17:01:58 -04:00
Ben Doyle
8fb68289c6
newsbeuter: Update from 2.7 to 2.8
2014-03-13 17:01:57 -04:00
Vladimír Čunát
d6349df0dd
put systemd unit dirs on the right place
...
Also see #1936 .
2014-03-13 21:44:51 +01:00
Ricardo M. Correia
d83e7fbb8d
chromium: Update all channels
...
stable: 33.0.1750.146 -> 33.0.1750.149
beta: 34.0.1847.14 -> 34.0.1847.45
dev: 35.0.1862.2 -> 35.0.1883.0
2014-03-13 02:27:14 +01:00
Cillian de Róiste
fcfbe753e7
Add synfig: A 2D animation program
2014-03-13 01:14:05 +01:00
Domen Kožar
5b733c9e24
Merge pull request #1919 from wkennington/master.st
...
st: Add builtInput for pkgconfig
2014-03-12 23:34:56 +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
Ricardo M. Correia
4640a6b9db
flashplayer: Update from 11.2.202.341 -> 11.2.202.346
2014-03-12 14:42:52 +01:00
Vladimír Čunát
4c9bac5004
liferea: fix https URIs by adding glib_networking
2014-03-11 22:01:12 +01:00
ambrop7@gmail.com
927971d8e3
kdevelop: Update to 4.6.
2014-03-11 18:36:16 +01:00
William A. Kennington III
635599c611
st: Add builtInput for pkgconfig
...
During the build process st fails to find pkg-config. This does not throw a fatal error but it should be included during build time.
2014-03-11 12:11:19 -05:00
Eelco Dolstra
36ee5c61c3
Rename git -> git-minimal, git-full -> git
...
Since most people probably want the full Git.
2014-03-11 17:00:17 +01:00
Peter Simons
423b2e2cd4
haskell-xmobar: update to version 0.20
2014-03-11 13:50:47 +01:00
Arseniy Seroka
f7d5e83abb
slim: remove duplicate code
2014-03-11 16:27:27 +04:00
José Romildo Malaquias
0704190b33
liferea: fixed some dependencies
2014-03-10 23:37:42 -03:00
Ricardo M. Correia
05a2b88df7
vimHugeX: also add wrapper for system-wide vimrc
2014-03-10 23:40:59 +01:00
Eelco Dolstra
203f4d6ec8
firefoxWrapper: Fix the name
2014-03-10 15:25:47 +01:00
Eelco Dolstra
1fe2a68224
quodlibet: Fix evaluation
...
http://hydra.nixos.org/build/9400950
2014-03-10 14:51:05 +01:00
Bjørn Forsman
d23ea79667
gnuradio: also use PYTHONPATH from runtime environment
...
So that extra modules can be used without rebuilding (e.g. in
gnuradio-companion). PYTHONPATH from the environment is added *after*
the default deps.
2014-03-09 22:35:36 +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
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
José Romildo Malaquias
542226ffe1
Updated liferea version from 1.8.15 to 1.10.6
2014-03-09 19:28:47 +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
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
Vladimír Čunát
73eead9f13
libreoffice: add deps needed now (libXdmcp, libpthreadstubs)
...
Configure phase passes now.
2014-03-08 21:25:30 +01:00
Michael Raskin
8dc61a6519
Update EKRHyper
2014-03-08 21:12:59 +04:00
Evgeny Egorochkin
5a92a3a296
cgit: update from 0.10 to 0.10.1
2014-03-08 18:24:16 +02:00
Evgeny Egorochkin
568f9e953f
xterm: update from 301 to 303
2014-03-08 17:53:12 +02:00
Cillian de Róiste
dc80186449
synthv1: update from 0.3.6 to 0.4.0
2014-03-08 14:52:19 +01:00
Cillian de Róiste
c4651ec5df
samplv1: update from 0.3.6 to 0.4.0
2014-03-08 14:52:19 +01:00
Cillian de Róiste
3093656cfb
drumkv1: update from 0.3.6 to 0.4.0
2014-03-08 14:52:19 +01:00
Peter Simons
39175f5117
haskell-git-annex: update to version 5.20140306
2014-03-08 11:27:29 +01:00
James Cook
5d14048867
ImageMagick: update to 6.8.8-7
...
Fixes CVE-2014-{1947,1958,2030}.
2014-03-08 10:35:05 +01:00
Austin Seipp
c0f779ceee
coq: add myself to maintainer list.
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-07 20:52:33 -06:00
Austin Seipp
fa118fc677
coq: 8.4pl2 -> 8.4pl3
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-07 20:52:26 -06:00
Austin Seipp
fb055c10f6
Make my packages slightly more consistent.
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-07 20:27:02 -06:00
Bjørn Forsman
b0ec4b54e7
gnuradio: update 3.7.1 -> 3.7.2.1
...
I verified that gnuradio-companion (the GUI) still starts.
2014-03-07 23:59:36 +01:00
Bjørn Forsman
084ff142ad
gnuradio: wrap example programs too
...
Without this the examples don't work. Example:
$ /nix/store/HASH-gnuradio-3.7.1/share/gnuradio/examples/uhd/usrp_am_mw_rcv.py
Traceback (most recent call last):
File "/nix/store/HASH-gnuradio-3.7.1/share/gnuradio/examples/uhd/usrp_am_mw_rcv.py", line 24, in <module>
from gnuradio import gr, eng_notation
ImportError: No module named gnuradio
2014-03-07 23:59:35 +01:00
Peter Simons
41e0214bb1
R: update to version 3.0.3
2014-03-07 22:51:39 +01:00
Domen Kožar
a73ab2f4cf
Merge pull request #1893 from ttuegel/maintainer
...
Claim maintainership of recently added packages
2014-03-07 21:53:12 +01:00
José Romildo Malaquias
69a3372f3f
Added hexchat
2014-03-07 21:52:36 +01:00
Thomas Tuegel
df5639183c
Claim maintainership of recently added packages
...
Also set platforms for some packages where it was missing.
2014-03-07 11:23:30 -06:00
Shea Levy
d690e2ef7a
Merge branch 'jitsi' of git://github.com/berdario/nixpkgs
...
Added jitsi
2014-03-07 10:51:41 -05:00
Dario Bertini
eb8cf5427e
Avoid using a global implicitly defined java binary
2014-03-07 16:43:01 +01:00
Domen Kožar
eb6a290f5e
bittorrentSync: 1.2.82 -> 1.2.91
2014-03-07 15:12:45 +01:00
Song Wenwu
08fb4d6bc4
praat: set meta.platforms to linux
2014-03-07 15:06:44 +01:00
Song Wenwu
1d52f7bd68
praat: update from 5323 to 5365
2014-03-07 15:06:44 +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
58accbc745
Merge pull request #1821 from AndersonTorres/master
...
8086tiny: new package
2014-03-07 13:18:12 +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
c616f319d3
Merge pull request #1860 from jagajaga/dwb_update
...
dwb: update version
2014-03-07 12:36:00 +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
Vladimír Čunát
be58c4f9e4
mupdf: fix CVE-2014-2013 by upstream patch
2014-03-06 21:21:03 +01:00
Vladimír Čunát
8f577c576c
filezilla: use default gnutls instead of vulnerable gnutls2
2014-03-05 14:23:05 +01:00
Eelco Dolstra
48ce981d13
mercurial: Update to 2.9.1
2014-03-05 11:29:32 +01:00
Domen Kožar
402198de56
Merge pull request #1838 from pSub/calibre-update
...
calibre: upgrade from 1.23.0 to 1.25.0
2014-03-05 08:35:21 +01:00
Ronny Esterluss
e0eb72cd17
added telegram-cli as instant-messenger application
2014-03-04 23:19:48 +01:00
Ricardo M. Correia
fdf97c5df3
chromium: Update all channels
...
stable: 33.0.1750.117 -> 33.0.1750.146
beta: 33.0.1750.117 -> 34.0.1847.14
dev: 34.0.1847.3 -> 35.0.1862.2
2014-03-04 18:35:08 +01:00
Dario Bertini
26d42a894a
Added jitsi
2014-03-04 13:17:57 +01:00
Peter Simons
164cf167b4
xmobar: drop obsolete patch files
2014-03-03 22:12:28 +01:00
mornfall
528b600ec6
Merge pull request #1867 from thoughtpolice/fixes
...
Some minor fixes for my packages - ktap, cb0cat, etc
2014-03-03 20:36:08 +01:00
Pascal Wittmann
af3cf0dbeb
Add structured-haskell-mode
2014-03-03 11:55:26 +01:00
Peter Simons
aa8ef327e4
gitAndTools.gitflow: update from 1.6.1 to 1.7.0
2014-03-03 11:10:27 +01:00
Peter Simons
97298922e5
gitAndTools.hub: update from 1.11.1 to 1.12.0
2014-03-03 11:10:27 +01:00
Peter Simons
db2776ee8a
feh: update from 2.9.3 to 2.10
2014-03-03 11:10:27 +01:00
Peter Simons
34ef383d45
xterm: update from 300 to 301
2014-03-03 11:10:26 +01:00
Peter Simons
dd3f07e0f2
skype: update from 4.2.0.11 to 4.2.0.13
2014-03-03 11:10:26 +01:00
Peter Simons
19cb32a36c
root: update from 5.34.14 to 5.34.15
2014-03-03 11:10:25 +01:00
Peter Simons
43eb9e6d53
mpg123: update from 1.16.0 to 1.18.1
2014-03-03 11:10:25 +01:00
Austin Seipp
7d561c5ba9
spark: Remove unneeded whitespace.
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-02 05:51:22 -06:00
Mathijs Kwik
d2dd22651d
idris-mode: upgrade to current version
2014-03-02 08:41:45 +01:00
Thomas Tuegel
90759ebf63
Add pcmanfm-1.2.0
2014-03-01 12:39:11 -06:00
Arseniy Seroka
350277d9c5
dwb: update version
2014-03-01 22:23:52 +04:00
Eelco Dolstra
405ea01e67
Add aangifte-2013
2014-03-01 16:54:16 +01:00
Evgeny Egorochkin
2291ae241c
homebank: update from 4.5.4 to 4.5.5
2014-03-01 05:25:28 +02:00
Moritz Maxeiner
997fffb54e
Set meta.platforms attribute to platforms.linux for Seafile packages and their prerequisites
2014-02-28 17:24:43 +01:00
Moritz Maxeiner
53e743fa08
Update Virtualbox and Guest Additions to 4.3.8, Oracle Extensions to 92456
2014-02-28 17:19:48 +01:00
Moritz Maxeiner
0fef1c502b
Add indentation for multi-line strings in seafile-client expression
2014-02-28 17:06:18 +01:00
Domen Kožar
037684283a
typo
2014-02-28 16:47:15 +01:00
Peter Simons
8cd17a8b03
haskell-git-annex: update to version 5.20140227
2014-02-28 13:01:00 +01:00
Peter Simons
861061cf65
haskell-yi: update to version 0.7.1
2014-02-28 13:01:00 +01:00
Peter Simons
fbd5795852
haskell-yi-contrib: update to version 0.7.1
2014-02-28 13:01:00 +01:00
Eelco Dolstra
34874dac7a
google-talk-plugin: Update to 5.1.5.0
2014-02-28 11:05:47 +01:00
Domen Kožar
e9f3199973
add gstreamer 1.0 setup-hook and use it where appropriate
2014-02-28 02:03:07 +01:00
mornfall
3b41a4ef0e
Merge pull request #1822 from thoughtpolice/spark
...
spark: version 0.9.0
2014-02-27 19:47:53 +01:00
Evgeny Egorochkin
d380290640
vlc: update from 2.1.3 to 2.1.4
2014-02-27 18:35:34 +02:00
Domen Kožar
65a34b7f85
add kazam
2014-02-27 16:37:35 +01:00
Pascal Wittmann
78e7d5db00
calibre: upgrade from 1.23.0 to 1.25.0
2014-02-26 09:36:14 +01:00
viric
0c11d4aa1f
Merge pull request #1448 from pSub/dwm-remove-patch
...
Removed confnotify-6.0.patch.
2014-02-24 22:48:48 +01:00
Peter Simons
ce365835d7
links2: update from 2.5 to 2.8
2014-02-24 22:04:40 +01:00
Lluís Batlle i Rossell
9c36f01edd
Updating toxic and toxcore to newer code.
2014-02-24 19:18:15 +01: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
AndersonTorres
ad6bdfaf56
Deleting the "runme" stuff - it is not needed at all,
...
and the run method is fully documented
2014-02-24 00:12:00 -03: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
Cillian de Róiste
9f08c21c2b
gnucash: enable aqbanking support for online banking
...
This requires recent versions of aqbanking and gwenhywfar:
https://devel.aqbanking.de/trac/aqbanking/ticket/197
It seems as if the developers have changed their version numbering
scheme in 2012 and have only released versions with the "beta" suffix
since then.
2014-02-23 12:21:32 +01:00
Sergey Mironov
5b223d457e
zathura: set default window-icon
2014-02-22 18:38:06 +01:00
Matej Cotman
9f06f92fd2
remove a dot; add matejc as maintainer
2014-02-22 18:17:19 +01:00
Matej Cotman
72fb60117e
twmn: new package
2014-02-22 18:17:19 +01:00
Vladimír Čunát
fb1028813c
subversion: minor bump to fix CVE-2014-0032
2014-02-22 17:04:34 +01:00
Peter Simons
007611cf4b
haskell-git-annex: update to version 5.20140221
2014-02-22 09:19:18 +01:00
Domen Kožar
40b8b3206e
fix remaining broken python packages due to refactoring
2014-02-21 23:27:06 +01:00
Ricardo M. Correia
92794f775a
firefox: Fix hash
2014-02-21 21:23:56 +01:00
Ricardo M. Correia
2a462ff6ae
firefox: Update from 27.0 -> 27.0.1
2014-02-21 21:07:59 +01:00
Ricardo M. Correia
2391129307
chromium: Update stable and beta channels
...
stable: 33.0.1750.115 -> 33.0.1750.117
beta: 33.0.1750.115 -> 33.0.1750.117
2014-02-21 19:35:18 +01:00
Ricardo M. Correia
96c481b8a0
flashplayer: Update from 11.2.202.336 -> 11.2.202.341
2014-02-21 19:19:01 +01:00
Domen Kožar
e65eb02a35
fix eval
2014-02-21 18:38:02 +01:00
Domen Kožar
368839c703
Merge pull request #1467 from iElectric/buildPythonPackage-refactor
...
buildPythonPackage refactoring
2014-02-21 18:33:48 +01:00
Domen Kožar
f1db57f1fe
buildPythonPackage: fix more borken packages
2014-02-21 18:29:57 +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
9f21874781
telepathy-logger: install gschemas in share/telepathy-logger
2014-02-21 09:52:32 +01:00
Cillian de Róiste
864c75b7fd
guitarix: update from 0.25.2 to 0.28.3
...
Add new required inputs: lv2 and avahi, tidy up
2014-02-21 00:19:25 +01:00
Domen Kožar
cc2b86d133
google_talk_plugin: 4.2.1.0 -> 5.1.4.0
2014-02-21 00:10:40 +01:00
Cillian de Róiste
c5e1cc5f37
Minor whitespace cleanup
2014-02-20 23:12:54 +01:00
cillianderoiste
f47d6a1314
Merge pull request #1792 from larkery/davmail-and-lxappearance
...
Add lxappearance and davmail
2014-02-20 23:08:04 +01:00
Ricardo M. Correia
3c871ccbc9
chromium: Update all channels
...
stable: 32.0.1700.107 -> 33.0.1750.115
beta: 33.0.1750.46 -> 33.0.1750.115
dev: 34.0.1809.0 -> 34.0.1847.3
2014-02-20 14:32:09 +01:00
Ricardo M. Correia
2537b7c679
vim: add config option to generate vimrc
2014-02-20 14:08:42 +01:00
Lluís Batlle i Rossell
94591762fe
Updating rdesktop to 1.8.1.
2014-02-20 12:28:30 +01: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
Domen Kožar
dfa8ac64ad
miro: keep quotes
2014-02-20 01:19:16 +01:00
Domen Kožar
fae6079a01
adopt rest of the packages that were failing with the buildPythonPackage changes
2014-02-20 01:19:15 +01:00
Austin Seipp
0441bb1b7a
virtualbox: 4.2.18 -> 4.2.22
...
This is needed to compile the Virtual Box guest additions with the 3.13
kernel (and thus the grsecurity testing kernel).
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-19 23:58:53 +01:00
Cillian de Róiste
30fb0365df
openimageio: update from 1.1.12 to 1.3.12
2014-02-19 22:49:21 +01:00
Sergey Mironov
2142d7542b
zathura: version bump (0.2.6 -> 0.2.7) ( close #1782 )
2014-02-19 20:51:50 +01:00
Sergey Mironov
a629aaee72
viewnior: version bump (1.4) ( close #1781 )
2014-02-19 20:44:30 +01:00
Cillian de Róiste
845f30aa6a
sonic-visualiser: upgrade from 1.9 to 2.3
...
remove obsolete patch, add new inputs
2014-02-19 20:14:15 +01:00
Peter Simons
40debd63ca
nc-indicators: re-generate with cabal2nix
2014-02-19 16:07:34 +01:00
Cillian de Róiste
6af0b814f5
kde_wacomtablet: upgrade from 1.3.5 to 2.0
2014-02-18 23:45:36 +01:00
Cillian de Róiste
8c83ae965f
blender: upgrade from 2.67 to 2.69 and add myself as maintainter
2014-02-18 22:11:39 +01:00
Cillian de Róiste
b532c03fbe
ardour3: update from 3.0 to 3.5.308
2014-02-18 21:28:28 +01:00