depot/third_party/nixpkgs/pkgs/data/misc/common-licenses/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

28 lines
774 B
Nix

{ 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 ];
};
}