summary refs log tree commit diff
path: root/pkgs/tools/misc/youtube-dl
diff options
context:
space:
mode:
authorValérian Galliat <val@codejam.info>2014-10-22 20:35:42 +0200
committerValérian Galliat <val@codejam.info>2014-10-22 20:35:42 +0200
commit1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9 (patch)
tree6e13b7b0eb0054dbc014514d63f37be4811be350 /pkgs/tools/misc/youtube-dl
parente55df0f4a33d74125cdf37ee94cf0aabb7b98328 (diff)
downloadnixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.tar
nixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.tar.gz
nixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.tar.bz2
nixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.tar.lz
nixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.tar.xz
nixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.tar.zst
nixlib-1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9.zip
Add `youtube-dl` license
Diffstat (limited to 'pkgs/tools/misc/youtube-dl')
-rw-r--r--pkgs/tools/misc/youtube-dl/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix
index bf23fbcf2cf1..bff266a25e78 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
     homepage = "http://rg3.github.com/youtube-dl/";
     repositories.git = https://github.com/rg3/youtube-dl.git;
     description = "Command-line tool to download videos from YouTube.com and other sites";
+    license = stdenv.lib.licenses.unlicense;
 
     platforms = with stdenv.lib.platforms; linux ++ darwin;
     maintainers = with stdenv.lib.maintainers; [ bluescreen303 simons phreedom ];