mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
Merge pull request #14901 from rardiol/lsb_release
lsb-release: init at 1.4
This commit is contained in:
commit
4a9ccee78f
27
pkgs/os-specific/linux/lsb-release/default.nix
Normal file
27
pkgs/os-specific/linux/lsb-release/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchurl, perl, getopt }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.4";
|
||||||
|
name = "lsb-release-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/lsb/${name}.tar.gz";
|
||||||
|
sha256 = "0wkiy7ymfi3fh2an2g30raw6yxh6rzf6nz2v90fplbnnz2414clr";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
substituteInPlace help2man \
|
||||||
|
--replace /usr/bin/perl ${perl}/bin/perl
|
||||||
|
'';
|
||||||
|
|
||||||
|
installFlags = [ "prefix=$(out)" ];
|
||||||
|
|
||||||
|
buildInputs = [ perl getopt ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
|
||||||
|
homepage = http://www.linuxfoundation.org/collaborate/workgroups/lsb;
|
||||||
|
license = [ stdenv.lib.licenses.gpl2Plus stdenv.lib.licenses.gpl3Plus ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -2273,6 +2273,8 @@ in
|
|||||||
|
|
||||||
lrzip = callPackage ../tools/compression/lrzip { };
|
lrzip = callPackage ../tools/compression/lrzip { };
|
||||||
|
|
||||||
|
lsb-release = callPackage ../os-specific/linux/lsb-release { };
|
||||||
|
|
||||||
# lsh installs `bin/nettle-lfib-stream' and so does Nettle. Give the
|
# lsh installs `bin/nettle-lfib-stream' and so does Nettle. Give the
|
||||||
# former a lower priority than Nettle.
|
# former a lower priority than Nettle.
|
||||||
lsh = lowPrio (callPackage ../tools/networking/lsh { });
|
lsh = lowPrio (callPackage ../tools/networking/lsh { });
|
||||||
|
Loading…
Reference in New Issue
Block a user