mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
lsb-release: init at 1.4
This commit is contained in:
parent
551296a1ce
commit
9f4ac8d3f8
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;
|
||||
};
|
||||
}
|
@ -2249,6 +2249,8 @@ in
|
||||
|
||||
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
|
||||
# former a lower priority than Nettle.
|
||||
lsh = lowPrio (callPackage ../tools/networking/lsh { });
|
||||
|
Loading…
Reference in New Issue
Block a user