7 stdenv.mkDerivation rec {
8 pname = "common-licenses";
12 url = "http://deb.debian.org/debian/pool/main/b/base-files/base-files_${version}.tar.xz";
13 hash = "sha256-Q5FTvfKWSBE1ywuAH+RnZdyD+LmRSgJ11qFiM53hL1Y=";
18 cp -r licenses $out/share/common-licenses
19 cat debian/base-files.links | grep common-licenses | sed -e "s|usr|$out|g" -e "s|^|ln -s |g" | bash -x
23 description = "common-licenses extracted from debian base-files package";
24 homepage = "https://tracker.debian.org/pkg/base-files";
25 license = licenses.gpl2Plus;
26 platforms = platforms.linux;
27 maintainers = [ maintainers.mkg20001 ];