summary refs log tree commit diff
path: root/pkgs/data/misc/common-licenses/default.nix
blob: a0c21b5d900b904a58ecfec2d8fd9ebe0858a43e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, fetchurl
, lib
}:

stdenv.mkDerivation rec {
  pname = "common-licenses";
  version = "11.1";

  src = fetchurl {
    url = "http://deb.debian.org/debian/pool/main/b/base-files/base-files_${version}.tar.xz";
    sha256 = "1i3hgd9vs14k819k441iibcgmi2zavnpqbnppyn2cz70kd830nbm";
  };

  installPhase = ''
    mkdir -p $out/share
    cp -r licenses $out/share/common-licenses
    cat debian/base-files.links | grep common-licenses | sed -e "s|usr|$out|g" -e "s|^|ln -s |g" | bash -x
  '';

  meta = with lib; {
    description = "common-licenses extracted from debian base-files package";
    homepage = "https://tracker.debian.org/pkg/base-files";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.mkg20001 ];
  };
}