Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 13 lines 301 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "libcdaudio-0.99.12"; 5 src = fetchurl { 6 url = mirror://sourceforge/libcdaudio/libcdaudio-0.99.12.tar.gz ; 7 sha256 = "1g3ba1n12g8h7pps0vlxx8di6cmf108mbcvbl6hj8x71ndkglygb" ; 8 }; 9 10 meta = { 11 platforms = stdenv.lib.platforms.linux; 12 }; 13}