mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
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/'
23 lines
602 B
Nix
23 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";
|
|
};
|
|
})
|