nixpkgs/pkgs/tools/cd-dvd/iat/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

24 lines
602 B
Nix

{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation (finalAttr: {
pname = "iat";
version = "0.1.7";
src = fetchurl {
url = "mirror://sourceforge/iat.berlios/iat-${finalAttr.version}.tar.gz";
hash = "sha256-sl1X/eKKArLYfNSf0UeLA5rb2DY1GHmmVP6hTCd2SyE=";
};
meta = with lib; {
description = "Tool for detecting the structure of many types of CD/DVD images";
homepage = "https://www.berlios.de/software/iso9660-analyzer-tool/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ hughobrien ];
platforms = platforms.linux;
mainProgram = "iat";
};
})