nixpkgs/pkgs/misc/emulators/libdsk/default.nix

20 lines
512 B
Nix
Raw Normal View History

2018-02-27 18:01:56 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libdsk";
version = "1.5.12";
2018-02-27 18:01:56 +00:00
src = fetchurl {
url = "https://www.seasip.info/Unix/LibDsk/${pname}-${version}.tar.gz";
sha256 = "0s2k9vkrf95pf4ydc6vazb29ysrnhdpcfjnf17lpk4nmlv1j3vyv";
2018-02-27 18:01:56 +00:00
};
meta = with stdenv.lib; {
description = "A library for accessing discs and disc image files";
homepage = "http://www.seasip.info/Unix/LibDsk/";
2018-02-27 18:01:56 +00:00
license = licenses.gpl2Plus;
maintainers = [ ];
2018-02-27 18:01:56 +00:00
platforms = platforms.linux;
};
}