summary refs log tree commit diff
path: root/pkgs/applications/networking/sync/unison/default.nix
Commit message (Collapse)AuthorAge
* unison: reduce closure size when enableX11 = falseHenri Menke2023-10-03
| | | | | Before: /nix/store/ifqr2nhgrci0ixga4k7pk9l6mqdfsk5b-unison-2.53.2 354.3M After: /nix/store/4cgr7fvqry0yrr8d76a5n0ykbm3wqx14-unison-2.53.2 40.9M
* unison: use finalAttrs patternRafael Fernández López2023-06-10
|
* unison: 2.53.0 -> 2.53.2R. Ryantm2023-03-24
|
* unison: 2.52.1 -> 2.53.0Tim Häring2023-02-20
| | | | | | | | | | | besides updating the version/src sha, upstream switched to GTK3, as can be seen in the release notes [0]. This apparently requires the ocaml cairo2 bindings an zlib. I also used wrapGAppsHook to supply the schemas from gsettings-desktop-schemas. Screenshot: https://i.imgur.com/CrPvLgQ.png I can not test the Icon creation since I am not using a desktop, @viric please check. Maybe this is also done by wrapGAppsHook.. [0] https://github.com/bcpierce00/unison/releases/tag/v2.53.0
* treewide: add strictDeps = true to most packages depending on ocamlUlrik Strid2023-02-03
|
* unison: 2.52.0 -> 2.52.1R. Ryantm2022-07-31
|
* unison: 2.51.5 -> 2.52.0R. Ryantm2022-03-13
|
* treewide: switch all desktop file generators to new APIK9002022-02-25
| | | | | | Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
* unison: 2.51.4 -> 2.51.5R. Ryantm2021-12-22
|
* unison: 2.51.3 -> 2.51.4Vladyslav M2021-10-17
|
* unison: format, cleanupSandro Jäckel2021-07-29
|
* unison: add desktop filecwyc2021-07-24
| | | | Added desktop file for program launchers. Also made use of lib.strings.optionalString to replace instances of `if string else ""`.
* unison: patch 2.51.3Michael Ashton2021-06-27
| | | | | | | Add patch which fixes builds with (at least) ocaml 4.12.0, and remove build constraint for 4.09. Necessary because unison built with 4.09 is not compatible with unison built with 4.12, e.g. on recent Homebrew.
* treewide: makeWrapper buildInputs to nativeBuildInputsBen Siraphob2021-02-19
|
* treewide: stdenv.lib -> libBen Siraphob2021-01-16
|
* unison: 2.51.2 -> 2.51.3Maximilian Bosch2020-11-11
|
* unison: fix unison-fsmonitor wrapper in an empty PATHSymphorien Gibol2020-04-26
| | | | | | | Fixes: /nix/store/hyk3aky49zm2chq5cwclrsm56iqwfzwj-unison-2.51.2/bin/unison-fsmonitor: line 2: grep: command not found Happens when running unison in a systemd service.
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|
* unison: fix build with ocamlPackages_4_09 (#82619)Matteo Scarlata2020-03-16
| | | | | | Fixes #61867 and #61505, bumps the ocaml version unison is built against to 4.08. The patches included here appear in the trunk version of unison, but were not backported to 2.51.2.
* unison: move out of ocamlPackagesVincent Laporte2020-03-13
|
* treewide: fix redirected urlsPatrick Hilhorst2020-01-22
| | | | | | | | | | | | | | | | | | | According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
* treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* unison: fix building on macOS with enableX11 = falseLily Ballard2019-05-14
| | | | | | If `UISTYLE` is not specified, Unison tries to auto-detect the UI style based on the available environment. On macOS this apparently means using `UISTYLE=mac`, it can't actually build this way in Nix.
* unison: 2.48.4 -> 2.51.2Sébastien Maret2019-02-14
|
* unison: more general platformVincent Laporte2017-05-30
|
* unison: install unison-fsmonitorOrivej Desh2017-02-03
| | | | It is necessary for `unison -ui text -repeat watch` to work.
* unison: 2.48.3 -> 2.48.4 (#17209)Maximilian Güntner2016-07-25
| | | Signed-off-by: Maximilian Güntner <code@maschinenpsychologe.de>
* unison: sha correctionEdward Tjörnhammar2015-02-17
|
* unison: update from 2.40.102 to 2.48.3Pascal Wittmann2015-02-06
|
* Turn some license strings into lib.licenses valuesMateusz Kowalczyk2014-07-28
|
* unison: upgrade to 2.40.102Mathijs Kwik2014-03-24
|
* Clean up redundant "if condition then true else false"Eelco Dolstra2012-12-28
|
* ocaml, unison: make them build on mips (native compilers)Lluís Batlle i Rossell2012-07-27
| | | | | | I switch off the build of ocaml compilers to native code, and add a 'passthru' that unison can use to see if it needs to call the native or the bytecode compiler.
* Add armv7l support.Nicolas Pierron2012-04-15
| | | | svn path=/nixpkgs/trunk/; revision=33798
* * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra2012-01-18
| | | | | | function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
* Updating unison.Lluís Batlle i Rossell2011-07-21
| | | | svn path=/nixpkgs/trunk/; revision=27893
* Making unison build to byte code in armv5tel. I also fix the build with ↵Lluís Batlle i Rossell2011-01-03
| | | | | | enableX11 I think. svn path=/nixpkgs/trunk/; revision=25373
* Allowing unison without X.Lluís Batlle i Rossell2011-01-03
| | | | svn path=/nixpkgs/trunk/; revision=25369
* Fix lablgtk referenceMichael Raskin2011-01-02
| | | | svn path=/nixpkgs/trunk/; revision=25343
* Only set font in wrapper if we have X.Peter Simons2010-05-17
| | | | | | | | | | Unison's wrapper was generating errors by calling xset even if DISPLAY was not set. This was especially noticeable when connecting to a remote server to sync with. Fix this by only setting the font path if DISPLAY is set to something. svn path=/nixpkgs/trunk/; revision=21821
* Updating unison.Lluís Batlle i Rossell2010-01-15
| | | | svn path=/nixpkgs/trunk/; revision=19468
* Fixed download url for Unison File Syncronizer.Marco Maggesi2009-12-03
| | | | svn path=/nixpkgs/trunk/; revision=18793
* Unison version update to 2.27.57Lluís Batlle i Rossell2009-03-24
| | | | svn path=/nixpkgs/trunk/; revision=14689
* * layout changesAndres Löh2008-06-04
| | | | svn path=/nixpkgs/trunk/; revision=11981
* * makeWrapper: option --run <CMD> to run a command from the wrapper.Eelco Dolstra2008-01-18
| | | | | | | | | This is so that the Unison wrapper can be generated with makeWrapper. * Use makeWrapper as a buildInput everywhere. * Updated BitTorrent, cvs2svn. svn path=/nixpkgs/trunk/; revision=10213
* * be more fault tolerant in the unison wrapperAndres Löh2007-08-13
| | | | svn path=/nixpkgs/trunk/; revision=9114
* * add unisonAndres Löh2007-08-10
- unison uses a wrapper script to add font-schumacher-misc to the local X font path if the font isn't already present; this is necessary for it to work, but not terribly nice ... * lablgtk is a dependency of unison - handling of library dirs with ocaml is a hack so far; in principle, ocaml needs a general setup for library dirs like ghc svn path=/nixpkgs/trunk/; revision=9094