Skip to content

Commit

Permalink
iotools: Format package.nix
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Singer <[email protected]>
  • Loading branch information
felixsinger committed Sep 7, 2024
1 parent 584e028 commit 55f70de
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pkgs/by-name/io/iotools/package.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{ stdenv, lib, fetchFromGitHub }:
{
stdenv,
lib,
fetchFromGitHub,
}:

stdenv.mkDerivation rec {
pname = "iotools";
Expand All @@ -11,7 +15,10 @@ stdenv.mkDerivation rec {
sha256 = "0vymnah44d5bzsjhfmxkcrlrikkp0db22k7a1s8bknz7glk9fldn";
};

makeFlags = [ "DEBUG=0" "STATIC=0" ];
makeFlags = [
"DEBUG=0"
"STATIC=0"
];

installPhase = ''
install -Dm755 iotools -t $out/bin
Expand All @@ -30,7 +37,10 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/adurbin/iotools";
license = licenses.gpl2Only;
maintainers = with maintainers; [ felixsinger ];
platforms = [ "x86_64-linux" "i686-linux" ];
platforms = [
"x86_64-linux"
"i686-linux"
];
mainProgram = "iotools";
};
}

0 comments on commit 55f70de

Please sign in to comment.