Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 22 lines 447 B view raw
1{ substituteAll, lib 2, coreutils, getopt 3}: 4 5substituteAll { 6 name = "lsb_release"; 7 8 src = ./lsb_release.sh; 9 10 dir = "bin"; 11 isExecutable = true; 12 13 inherit coreutils getopt; 14 15 meta = with lib; { 16 description = "Prints certain LSB (Linux Standard Base) and Distribution information"; 17 mainProgram = "lsb_release"; 18 license = [ licenses.mit ]; 19 maintainers = with maintainers; [ primeos ]; 20 platforms = platforms.linux; 21 }; 22}