Style fix

This commit is contained in:
Eelco Dolstra 2014-09-24 15:07:18 +02:00
parent f0a8b57de8
commit 39d9396380
2 changed files with 4 additions and 10 deletions

View File

@ -1,11 +1,8 @@
{ stdenv, fetchurl }:
let
stdenv.mkDerivation rec {
name = "libogg-1.3.2";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z";

View File

@ -1,11 +1,8 @@
{ stdenv, fetchurl, libogg, pkgconfig }:
let
stdenv.mkDerivation rec {
name = "libvorbis-1.3.4";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
sha256 = "0wpk87jnhngcl3nc5i39flkycx1sjzilx8jjx4zc4p8r55ylj19g";