mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
libdsk: init at 1.5.8
This commit is contained in:
parent
0eef302475
commit
2b7e912c57
19
pkgs/misc/emulators/libdsk/default.nix
Normal file
19
pkgs/misc/emulators/libdsk/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libdsk-${version}";
|
||||
version = "1.5.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.seasip.info/Unix/LibDsk/${name}.tar.gz";
|
||||
sha256 = "1fdypk6gjkb4i2ghnbn3va50y69pdym51jx3iz9jns4636z4sfqd";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A library for accessing discs and disc image files";
|
||||
homepage = http://www.seasip.info/Unix/LibDsk/;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.genesis ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -16288,6 +16288,8 @@ with pkgs;
|
||||
|
||||
lighttable = callPackage ../applications/editors/lighttable {};
|
||||
|
||||
libdsk = callPackage ../misc/emulators/libdsk { };
|
||||
|
||||
links2 = callPackage ../applications/networking/browsers/links2 { };
|
||||
|
||||
linphone = callPackage ../applications/networking/instant-messengers/linphone rec {
|
||||
|
Loading…
Reference in New Issue
Block a user