nixpkgs/pkgs/os-specific/linux/lsb-release/default.nix

22 lines
414 B
Nix
Raw Normal View History

{ substituteAll, lib
, coreutils, getopt
}:
2016-04-22 17:03:27 +00:00
substituteAll {
name = "lsb_release";
2016-04-22 17:03:27 +00:00
src = ./lsb_release.sh;
dir = "bin";
isExecutable = true;
inherit coreutils getopt;
2016-04-22 17:03:27 +00:00
meta = with lib; {
2016-04-22 17:03:27 +00:00
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
license = [ licenses.mit ];
maintainers = with maintainers; [ primeos ];
platforms = platforms.linux;
2016-04-22 17:03:27 +00:00
};
}