heroic: use qt6 version of kdialog (#372495)
[NixPkgs.git] / pkgs / by-name / co / common-licenses / package.nix
blob05ea1e51c96e2560f2522c6f5737612b2d4ff9b4
2   stdenv,
3   fetchurl,
4   lib,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "common-licenses";
9   version = "13";
11   src = fetchurl {
12     url = "http://deb.debian.org/debian/pool/main/b/base-files/base-files_${version}.tar.xz";
13     hash = "sha256-Q5FTvfKWSBE1ywuAH+RnZdyD+LmRSgJ11qFiM53hL1Y=";
14   };
16   installPhase = ''
17     mkdir -p $out/share
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
20   '';
22   meta = with lib; {
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 ];
28   };