summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2014-10-22 20:38:23 +0200
committerAristid Breitkreuz <aristidb@gmail.com>2014-10-22 20:38:23 +0200
commit1292ab04d8aec181633c087f5009c5d3db50c119 (patch)
tree88c8dc3d7be157f35d2ab2aa44a4774ea4f56a22 /pkgs
parent773e804274ef20a63c1d365b8da586c8fc3a59fe (diff)
parent1f4456fb5a5d73fd48dd3b4e2d98508a6d827df9 (diff)
downloadnixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.tar
nixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.tar.gz
nixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.tar.bz2
nixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.tar.lz
nixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.tar.xz
nixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.tar.zst
nixpkgs-1292ab04d8aec181633c087f5009c5d3db50c119.zip
Merge pull request #4618 from valeriangalliat/patch-1
Add the Unlicense
Diffstat (limited to 'pkgs')
-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 bf23fbcf2cf..bff266a25e7 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 ];