Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

cdrdao: add license

+3 -2
+3 -2
pkgs/tools/cd-dvd/cdrdao/default.nix
··· 28 28 # Needed on gcc >= 6. 29 29 NIX_CFLAGS_COMPILE = "-Wno-narrowing"; 30 30 31 - meta = { 31 + meta = with stdenv.lib; { 32 32 description = "A tool for recording audio or data CD-Rs in disk-at-once (DAO) mode"; 33 33 homepage = http://cdrdao.sourceforge.net/; 34 - platforms = stdenv.lib.platforms.linux; 34 + platforms = platforms.linux; 35 + license = licenses.gpl2; 35 36 }; 36 37 }