summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorElXreno <elxreno@gmail.com>2021-06-05 16:45:17 +0300
committerElXreno <elxreno@gmail.com>2021-06-05 17:39:12 +0300
commita3fa2cf7c223bacbd255e200a548c84a1e583f14 (patch)
treed634719a4b4a1a17f142d36a645f2d3b9a482a68 /pkgs/tools/filesystems
parent141b2b111d7aa5f8132edd0fc4f78fb2c2402ebb (diff)
downloadnixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.tar
nixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.tar.gz
nixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.tar.bz2
nixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.tar.lz
nixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.tar.xz
nixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.tar.zst
nixpkgs-a3fa2cf7c223bacbd255e200a548c84a1e583f14.zip
bees: nixpkgs-fmt
Change-Id: If4e9431dad00ffade3316cf22235d8d44d12d149
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/bees/default.nix30
1 files changed, 20 insertions, 10 deletions
diff --git a/pkgs/tools/filesystems/bees/default.nix b/pkgs/tools/filesystems/bees/default.nix
index 7ba27208fe8..5a3d6474c85 100644
--- a/pkgs/tools/filesystems/bees/default.nix
+++ b/pkgs/tools/filesystems/bees/default.nix
@@ -1,5 +1,14 @@
-{ lib, stdenv, runCommand, fetchFromGitHub, bash, btrfs-progs, coreutils
-, python3Packages, util-linux, nixosTests }:
+{ lib
+, stdenv
+, runCommand
+, fetchFromGitHub
+, bash
+, btrfs-progs
+, coreutils
+, python3Packages
+, util-linux
+, nixosTests
+}:
 
 let
 
@@ -15,12 +24,12 @@ let
     };
 
     buildInputs = [
-      btrfs-progs               # for btrfs/ioctl.h
-      util-linux                 # for uuid.h
+      btrfs-progs # for btrfs/ioctl.h
+      util-linux # for uuid.h
     ];
 
     nativeBuildInputs = [
-      python3Packages.markdown   # documentation build
+      python3Packages.markdown # documentation build
     ];
 
     preBuild = ''
@@ -56,11 +65,12 @@ let
 
 in
 
-(runCommand "bees-service" {
-  inherit bash bees coreutils;
-  utillinux = util-linux; # needs to be a valid shell variable name
-  btrfsProgs = btrfs-progs; # needs to be a valid shell variable name
-} ''
+(runCommand "bees-service"
+  {
+    inherit bash bees coreutils;
+    utillinux = util-linux; # needs to be a valid shell variable name
+    btrfsProgs = btrfs-progs; # needs to be a valid shell variable name
+  } ''
   mkdir -p -- "$out/bin"
   substituteAll ${./bees-service-wrapper} "$out"/bin/bees-service-wrapper
   chmod +x "$out"/bin/bees-service-wrapper