5f54bb9919
Debian's anonscm is dead, they use a Gitlab instance now. The hash changed because the branch was rebased upstream, the diff is a noop.
21 lines
541 B
Nix
21 lines
541 B
Nix
{stdenv, fetchgit}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mdf2iso-${version}";
|
|
version = "0.3.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://salsa.debian.org/debian/mdf2iso";
|
|
rev = "c6a5b588318d43bc8af986bbe48d0a06e92f4280";
|
|
sha256 = "0xg43jlvrk8adfjgbjir15nxwcj0nhz4gxpqx7jdfvhg0kwliq0n";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Small utility that converts MDF images to ISO format";
|
|
homepage = src.url;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.oxij ];
|
|
};
|
|
}
|