Skip to content

Commit

Permalink
iotools: Move package definition into by-name directory (#338674)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4A6F authored Sep 7, 2024
2 parents 628d108 + 55f70de commit 194cc3d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
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";
};
}
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5390,8 +5390,6 @@ with pkgs;

iotas = callPackage ../applications/office/iotas { };

iotools = callPackage ../tools/misc/iotools { };

jellycli = callPackage ../applications/audio/jellycli { };

jellyfin-ffmpeg = callPackage ../development/libraries/jellyfin-ffmpeg { };
Expand Down

0 comments on commit 194cc3d

Please sign in to comment.