summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorHugh O'Brien <github@hughobrien.ie>2023-06-17 11:20:56 -0400
committerEmery Hemingway <ehmry@posteo.net>2023-06-17 21:44:49 +0100
commit28c5effe2ff2f5553a1c4ff63705398eb949b322 (patch)
tree6bac87872c95454d80a6ba98d4528bcac6602538 /pkgs/tools/cd-dvd
parent6d4ad65d69bceef944e27ed00807aee7578cccd8 (diff)
downloadnixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.tar
nixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.tar.gz
nixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.tar.bz2
nixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.tar.lz
nixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.tar.xz
nixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.tar.zst
nixpkgs-28c5effe2ff2f5553a1c4ff63705398eb949b322.zip
iac: init at 0.1.7
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/iat/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/iat/default.nix b/pkgs/tools/cd-dvd/iat/default.nix
new file mode 100644
index 00000000000..083ff35acd7
--- /dev/null
+++ b/pkgs/tools/cd-dvd/iat/default.nix
@@ -0,0 +1,22 @@
+{ 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 = "The Iso9660 Analyzer Tool is a tool for detecting the structure of many types of CD/DVD images. It can convert from IMG to ISO format.";
+    homepage = "https://www.berlios.de/software/iso9660-analyzer-tool/";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ hughobrien ];
+    platforms = platforms.linux;
+  };
+})