lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 23 lines 513 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "libdsk"; 9 version = "1.5.22"; 10 11 src = fetchurl { 12 url = "https://www.seasip.info/Unix/LibDsk/${pname}-${version}.tar.gz"; 13 sha256 = "sha256-gQ+AC8x2ZfTBs14ZquyzXzcptxKtHYBxBQWbS9sc8Ek="; 14 }; 15 16 meta = with lib; { 17 description = "Library for accessing discs and disc image files"; 18 homepage = "http://www.seasip.info/Unix/LibDsk/"; 19 license = licenses.gpl2Plus; 20 maintainers = [ ]; 21 platforms = platforms.unix; 22 }; 23}