summary refs log tree commit diff
path: root/pkgs/development/libraries/libsamplerate
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-07-02 09:08:01 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-07-02 09:08:01 +0000
commitd3f5d94ac7bcbabc61300c0141e4a9c85e777db3 (patch)
tree6da990bd0e3e0621c7c92523ad8aacbfd3b92918 /pkgs/development/libraries/libsamplerate
parent255a4a91f09838c3ffa45dd31a5ab372095efedd (diff)
downloadnixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.tar
nixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.tar.gz
nixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.tar.bz2
nixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.tar.lz
nixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.tar.xz
nixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.tar.zst
nixpkgs-d3f5d94ac7bcbabc61300c0141e4a9c85e777db3.zip
* Fix some attributes that now make nix-env -q --meta barf.
svn path=/nixpkgs/trunk/; revision=16134
Diffstat (limited to 'pkgs/development/libraries/libsamplerate')
-rw-r--r--pkgs/development/libraries/libsamplerate/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libsamplerate/default.nix b/pkgs/development/libraries/libsamplerate/default.nix
index aa218f102cd..a30a2884c6a 100644
--- a/pkgs/development/libraries/libsamplerate/default.nix
+++ b/pkgs/development/libraries/libsamplerate/default.nix
@@ -23,9 +23,10 @@ stdenv.mkDerivation {
     description = "Sample Rate Converter for audio";
     homepage = http://www.mega-nerd.com/SRC/index.html;
     # you can choose one of the following licenses:
-    license = [ "GPL"
-                { url=http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf;
-                  name="libsamplerate Commercial Use License";
-                } ];
+    license = [
+      "GPL"
+      # http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf
+      "libsamplerate Commercial Use License"
+    ];
   };
 }