Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 565 B view raw
1{ 2 lib, 3 stdenv, 4 fetchgit, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "mdf2iso"; 9 version = "0.3.1"; 10 11 src = fetchgit { 12 url = "https://salsa.debian.org/debian/mdf2iso"; 13 rev = "c6a5b588318d43bc8af986bbe48d0a06e92f4280"; 14 sha256 = "0xg43jlvrk8adfjgbjir15nxwcj0nhz4gxpqx7jdfvhg0kwliq0n"; 15 }; 16 17 meta = with lib; { 18 description = "Small utility that converts MDF images to ISO format"; 19 homepage = src.url; 20 license = licenses.gpl2Plus; 21 platforms = platforms.unix; 22 maintainers = [ maintainers.oxij ]; 23 mainProgram = "mdf2iso"; 24 }; 25}