mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Style fix
This commit is contained in:
parent
f0a8b57de8
commit
39d9396380
2 changed files with 4 additions and 10 deletions
|
@ -1,10 +1,7 @@
|
|||
{ 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";
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
{ 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";
|
||||
|
|
Loading…
Reference in a new issue