mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
common-licenses: init at 11.1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
5a29c4d3bf
commit
2a85a9835b
28
pkgs/data/misc/common-licenses/default.nix
Normal file
28
pkgs/data/misc/common-licenses/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -2228,6 +2228,8 @@ in
|
||||
|
||||
commitizen = callPackage ../applications/version-management/commitizen {};
|
||||
|
||||
common-licenses = callPackage ../data/misc/common-licenses {};
|
||||
|
||||
compactor = callPackage ../applications/networking/compactor { };
|
||||
|
||||
consul = callPackage ../servers/consul { };
|
||||
|
Loading…
Reference in New Issue
Block a user