Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
565 B
Nix
26 lines
565 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mdf2iso";
|
|
version = "0.3.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://salsa.debian.org/debian/mdf2iso";
|
|
rev = "c6a5b588318d43bc8af986bbe48d0a06e92f4280";
|
|
sha256 = "0xg43jlvrk8adfjgbjir15nxwcj0nhz4gxpqx7jdfvhg0kwliq0n";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Small utility that converts MDF images to ISO format";
|
|
homepage = src.url;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.oxij ];
|
|
mainProgram = "mdf2iso";
|
|
};
|
|
}
|