mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nrr: format with nixfmt-rfc-style
This commit is contained in:
parent
1460e06773
commit
cffc27daf0
1 changed files with 11 additions and 13 deletions
|
@ -1,14 +1,14 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, darwin
|
||||
, pkg-config
|
||||
, libiconv
|
||||
, enableLTO ? true
|
||||
, nrxAlias ? true
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
darwin,
|
||||
pkg-config,
|
||||
libiconv,
|
||||
enableLTO ? true,
|
||||
nrxAlias ? true,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "nrr";
|
||||
version = "0.9.4";
|
||||
|
@ -30,9 +30,7 @@ rustPlatform.buildRustPackage rec {
|
|||
libiconv
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
env = lib.optionalAttrs enableLTO {
|
||||
CARGO_PROFILE_RELEASE_LTO = "fat";
|
||||
|
|
Loading…
Reference in a new issue