nixpkgs/pkgs/tools/cd-dvd/mdf2iso/default.nix

21 lines
529 B
Nix
Raw Normal View History

{lib, stdenv, fetchgit}:
2016-09-03 14:01:30 +00:00
stdenv.mkDerivation rec {
pname = "mdf2iso";
2016-09-03 14:01:30 +00:00
version = "0.3.1";
src = fetchgit {
url = "https://salsa.debian.org/debian/mdf2iso";
rev = "c6a5b588318d43bc8af986bbe48d0a06e92f4280";
sha256 = "0xg43jlvrk8adfjgbjir15nxwcj0nhz4gxpqx7jdfvhg0kwliq0n";
2016-09-03 14:01:30 +00:00
};
meta = with lib; {
2016-09-03 14:01:30 +00:00
description = "Small utility that converts MDF images to ISO format";
homepage = src.url;
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.oxij ];
};
}