Commit graph

31 commits

Author SHA1 Message Date
Samuel Dionne-Riel 82ec27d3ff refind: 0.13.0 -> 0.13.1 2021-02-25 23:57:16 -05:00
Samuel Dionne-Riel 7260e7c1e8
refind: 0.12.0 -> 0.13.0 (#113328) 2021-02-17 04:19:46 +01:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Lucas Ransan 1c89832fd5 refind: fix build on gcc10 2020-12-28 08:43:32 +01:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Samuel Dionne-Riel fb594b816a refind: 0.11.5 -> 0.12 2020-03-14 01:25:24 +00:00
Samuel Dionne-Riel 9648094ec7 refind: Add samueldr to maintainers 2020-02-13 16:04:48 -05:00
Samuel Dionne-Riel f96163891a refind: 0.11.4 -> 0.11.5 2020-02-13 16:04:39 -05:00
volth 08f68313a4 treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
volth 35d68ef143 treewide: remove redundant quotes 2019-08-26 21:40:19 +00:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Samuel Dionne-Riel 19c404cf45 refind: allows building for aarch64 2019-05-19 17:38:50 -04:00
Samuel Dionne-Riel e6f98bfdb9 refind: 0.11.3 -> 0.11.4 2018-11-13 19:25:00 -05:00
John Ericson 2c2f1e37d4 reewide: Purge all uses stdenv.system and top-level system
It is deprecated and will be removed after 18.09.
2018-08-30 17:20:32 -04:00
Pascal Wittmann 94d090ba8c
refind: add license
see issue #43716
2018-08-06 12:21:56 +02:00
Frederik Rietdijk 010ebe1276
Merge pull request #43996 from samueldr/update/refind-0.11.3
refind: 0.11.2 -> 0.11.3
2018-07-24 20:50:44 +02:00
Samuel Dionne-Riel 0702fbd88e refind: 0.11.2 -> 0.11.3 2018-07-23 00:39:34 -04:00
volth 52f53c69ce pkgs/*: remove unreferenced function arguments 2018-07-21 02:48:04 +00:00
Erik Arvstedt adce6bf638 refind: fix runtime errors
In newer versions, instead of using $PWD to locate its ressource files,
Refind now refers to the dir containing $0.
This causes runtime errors due to missing ressources.

In lieu a wrapper binary, we now simply patch the variable 'RefindDir'
which stores the path to the ressource dir.
2018-05-03 22:13:39 +02:00
Samuel Dionne-Riel 2d66f39b15 refind: 0.10.3 -> 0.11.2 2018-01-09 22:57:04 -05:00
Robin Gloster c555556af5
refind: mark as broken 2017-03-14 15:36:35 +01:00
Joachim Fasting 191a85349b
refind: refactorings
- Remove redundant build inputs
  These are (optional) run-time dependencies, adding them to build inputs
  does nothing.
- Use standard buildPhase
  Note that specifying linker script is unnecessary.  Also specify correct
  host arch and efi platform.
- Replace non-working ad-hoc patch with wrapper
  The ad-hoc patching of refind-install didn't actually substitute anything;
  with a wrapper script patching becomes unnecessary
- Remove use of deprecated meta.version

Closes https://github.com/NixOS/nixpkgs/pull/18103
2016-09-01 14:51:32 +02:00
obadz 3de6e5be50 Merge branch 'master' into staging
Conflicts:
      pkgs/applications/misc/navit/default.nix
      pkgs/applications/networking/mailreaders/alpine/default.nix
      pkgs/applications/networking/mailreaders/realpine/default.nix
      pkgs/development/compilers/ghc/head.nix
      pkgs/development/libraries/openssl/default.nix
      pkgs/games/liquidwar/default.nix
      pkgs/games/spring/springlobby.nix
      pkgs/os-specific/linux/kernel/perf.nix
      pkgs/servers/sip/freeswitch/default.nix
      pkgs/tools/archivers/cromfs/default.nix
      pkgs/tools/graphics/plotutils/default.nix
2016-08-27 23:54:54 +01:00
Joachim Fasting f6fc56d35a
refind: 0.9.2 -> 0.10.3, fix build 2016-08-27 10:41:01 +02:00
Franz Pletz aff1f4ab94 Use general hardening flag toggle lists
The following parameters are now available:

  * hardeningDisable
    To disable specific hardening flags
  * hardeningEnable
    To enable specific hardening flags

Only the cc-wrapper supports this right now, but these may be reused by
other wrappers, builders or setup hooks.

cc-wrapper supports the following flags:

  * fortify
  * stackprotector
  * pie (disabled by default)
  * pic
  * strictoverflow
  * format
  * relro
  * bindnow
2016-03-05 18:55:26 +01:00
Robin Gloster a12ecfc405 refind: disable stackprotector hardening 2016-03-01 22:21:08 +00:00
zimbatm 69ce5cb656 use the sourceforge mirrors everywhere
find pkgs -name "*.nix" -exec sed -r \
    "s|https?://downloads.sourceforge.net/|mirror://sourceforge/|g" -i {} \;
2016-02-28 12:07:42 +00:00
AndersonTorres 124e832c37 refind: 0.8.4 -> 0.9.2 2015-11-01 09:37:00 -02:00
Matthias Beyer af8850eed6 refind: 0.8.4 -> 0.9.2 2015-10-17 15:55:54 +02:00
Tuomas Tynkkynen f44add6911 refind: Fix build on i686
Use the correct linker script filename on i686 to fix this build error:

/.../ld: cannot open linker script file /nix/store/...-gnu-efi_3.0u/lib/elf_x86_64_efi.lds: No such file or directory

Only compile tested.
2015-04-27 15:24:24 +03:00
AndersonTorres f928894292 rEFInd (version 0.8.4): New Package
rEFInd is a graphical, EFI-based boot manager
2015-01-14 21:46:49 -02:00