mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
fix(lint): nixfmt the whole tree
This commit is contained in:
parent
643b136863
commit
bf219a30c2
69 changed files with 2605 additions and 1726 deletions
|
|
@ -1,12 +1,13 @@
|
|||
{lib
|
||||
,bc
|
||||
,pciutils
|
||||
,gnugrep
|
||||
,coreutils
|
||||
,bash
|
||||
,writeText
|
||||
,stdenv
|
||||
,substituteAll
|
||||
{
|
||||
lib,
|
||||
bc,
|
||||
pciutils,
|
||||
gnugrep,
|
||||
coreutils,
|
||||
bash,
|
||||
writeText,
|
||||
stdenv,
|
||||
substituteAll,
|
||||
}:
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
|
@ -26,13 +27,23 @@ stdenv.mkDerivation rec {
|
|||
substituteAllInPlace $out/bin/aspm_enable;
|
||||
'';
|
||||
|
||||
buildInputs = [ pciutils bc coreutils gnugrep ];
|
||||
buildInputs = [
|
||||
pciutils
|
||||
bc
|
||||
coreutils
|
||||
gnugrep
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A program to forcibly enable PCIe ASPM for compatible devices";
|
||||
homepage = "https://wireless.wiki.kernel.org/en/users/Documentation/ASPM";
|
||||
license = licenses.gpl3Plus;
|
||||
patforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "mipsel-linux" ];
|
||||
patforms = [
|
||||
"x86_64-linux"
|
||||
"i686-linux"
|
||||
"aarch64-linux"
|
||||
"mipsel-linux"
|
||||
];
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,4 +33,3 @@ writeShellScriptBin "pinentry" ''
|
|||
|
||||
exec ''${pinentryFlavors[$flavor]}/bin/pinentry
|
||||
''
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue